基本上,我希望标题字体使用与我使用设置的大小不同的(较小的)字体大小\documentclass
。我应该使用什么选项?
\documentclass[12pt]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[margin=1in, headsep=10pt]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead[L]{Personal Statement} % What other option should I use to get a custom font size ?
答案1
正如沃纳写道:
\fontsize{<size>}{<baselineskip}\selectfont
将后面的内容排版为大小,基线跳过,但我认为\small
这是更好的方法,因为很多东西都调整正确,的定义\small
以 开头:
\newcommand*\small{%
\@setfontsize\small\@xpt\@xiipt
例子 :
\documentclass[12pt]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[margin=1in, headsep=10pt]{geometry}
\usepackage{fancyhdr,lipsum}
\pagestyle{fancy}
\fancyhead{} % clear all header fields
\fancyhead[L]{\fontsize{10}{12} \selectfont Personal Statement}
\begin{document}
\lipsum
\end{document}
答案2
前几天我碰到了这个问题:
\usepackage{fix-cm}
\fontsize{100}{120}\selectfont Huge text
并且在我的简历中广泛使用了它。我喜欢它,因为它比标准\small
命令等提供了更细粒度的控制。
您只需像平常一样将包放在前言中,然后在您希望字体为非标准大小的地方使用该命令。这是一个工作示例:
\documentclass[10pt,letterpaper]{article}\usepackage{fix-cm,soul}\frenchspacing
\pagestyle{empty}
\begin{document}
\begin{center}{\fontsize{20}{22}\selectfont Alfred E. Neuman}\\\end{center}
{\fontsize{12}{12}\selectfont\textbf{\so{(111)222-3456}} \hfill {\fontsize{12}
{12}\selectfont 1313 Mockingbird Lane \\ {\fontsize{11}{11}\selectfont \textbf
{[email protected]}} \hfill Boca Raton, Florida}
\end{document}
抱歉,我的代码有点混乱。