\vfill 之后的 \vspace 被忽略

\vfill 之后的 \vspace 被忽略
\vfill
Text first line
\vspace{1cm}
Text second line
\cleardoublepage

不幸的是,LaTeX 忽略了这\vspace一点:生成的文档中两行之间没有添加垂直空间。这是为什么呢?

答案1

您需要添加 a)某物(例如,一个空白框)之前\vfill(假设\vfill位于页面顶部)b)第一行和第二行之间的段落。

\documentclass{article}
\begin{document}
\null\vfill
Text first line

\vspace{1cm}
Text second line
\end{document}

相关内容