我对某个喜欢使用 Word 的人提供的一份文档有要求。要求如下:
目录应出现在引言之前。请注明页码。章节应从右侧奇数页开始。章节标题应以 18 号大写字母加粗,首字母和章节号应为 24 号大写字母,并排列在左侧。
我怎样才能使章节标题以数字和 24pt 大小的首字母开头?
答案1
您可以使用 24 pt 小型大写字母并将首字母设置为大写来实现类似的效果。我使用了\Huge
,它比主字体的 24 pt 略小11 pt
。您可以将其替换\Huge
为\fontsize{24pt}{28.8pt}
替换。我建议您从KOMA 脚本,这使得这变得简单(只需看看\addtokomafont
手册中的命令)。此外,回忆录使这非常简单
\documentclass{scrartcl}
\usepackage[utf8]{inputenx}
\usepackage[T1]{fontenc}
\setkomafont{section}{\normalfont}
\addtokomafont{section}{\Huge\scshape}
\begin{document}
\section{This is an ugly heading}
Here is the text.
\end{document}
为了使标题不那么难看,添加包lmodern
和mictotype
\documentclass{scrartcl}
\usepackage{lmodern} % scalable font
\usepackage{microtype} % microtypography
\usepackage[utf8]{inputenx}
\usepackage[T1]{fontenc}
\setkomafont{section}{\normalfont}
\addtokomafont{section}{\fontsize{24pt}{28.8pt}\selectfont\scshape\textls}
\begin{document}
\section{This is a less ugly heading}
Here is the text.
\end{document}