更改章节号和首字母字体大小

更改章节号和首字母字体大小

我对某个喜欢使用 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}

在此处输入图片描述

为了使标题不那么难看,添加包lmodernmictotype

\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}

在此处输入图片描述

相关内容