如何制作芝加哥风格的标题页?

如何制作芝加哥风格的标题页?

像这样:https://owl.english.purdue.edu/media/pdf/1300991022_717.pdf。它需要一些位于页面下方三分之一处的文本,以及一些位于页面下方三分之二处的文本。我正在使用文章文档类。

答案1

您可以使用一些可用的橡胶长度,例如\vfill\vspace{\stretch{number}}

使用\vfill,tex 会将页面上的剩余空间均匀分布\vfill。因此,在第一部分之前、在中间和在之后各放置一个,即可得到您想要的结果

\documentclass{article}
\begin{document}
\begin{center}
\vfill
Fisrt text one third of the way
\vfill
Second part two third of the way
\vfill
\end{center}
\end{document}

为了进行额外的控制,您可以使用\vspace{\stretch{number}}Tex 添加数字并相应地扩展剩余空间。在下面的例子中,空间将是前面的一个部分,中间的两个部分和后面的三个部分

\documentclass{article}
\begin{document}
\begin{center}
\vspace{\stretch{1}}
Fisrt text one third of the way
\vspace{\stretch{2}}
Second part two third of the way
\vspace{\stretch{3}}
\end{center}
\end{document}

相关内容