同一页(封面)使用不同的字体(系列和大小)

同一页(封面)使用不同的字体(系列和大小)

我想制作一个标题/封面包,它应该使用预定义的字体,而加载和使用该包的文档(通过使用生成新页面的命令来使用)应该使用它想要的任何字体。

我怎样才能做到这一点?

答案1

应将字体选择(系列、形状或大小)分组,以便本地化任何更改。作为参考,请参阅改变\fontfamily\familydefault

pbk这是使用 Bookman ( ) 作为标题页的模型,后面跟着常规拉丁现代 (lmodern) 为文档的其余部分:

在此处输入图片描述

\documentclass{article}
\usepackage{lmodern}% http://ctan.org/pkg/lm
\begin{document}
\thispagestyle{empty}
\vspace*{.4\textheight}
\begingroup
\centering
\fontfamily{pbk}\selectfont
{\Huge\bfseries My Title\par}
{\Large My Name\par}
\bigskip
\today\par
\endgroup
\newpage% End of title page

Here is some regular text in Latin Modern.
\end{document}

相关内容