9

How can I use a font that needs explicit calling, like Auriocus Kalligraphicus, as the default font through the whole document?

Martin Scharrer
  • 262,582
lvella
  • 315

1 Answers1

10

You could redefine \familydefault, \rmdefault, \sfdefault and more.

Regarding Auriocus Kalligraphicus, for example:

\documentclass{book}
\usepackage[T1]{fontenc}
\usepackage{aurical}
\renewcommand*{\rmdefault}{AuriocusKalligraphicus}
\begin{document}
\chapter{Text}
This is an example.
\end{document}

As you can see, roman text in various sizes has the desired font:

enter image description here

Stefan Kottwitz
  • 231,401