整个部分到页面底部

整个部分到页面底部

我正在用 tex 写论文,这是我第一次写。在开始的时候,有些页面需要格式化,以便它们被刷新到页面底部。问题是,所有这些页面本身也是独立的\section。我知道,\vfill但是因为章节标题也需要刷新,所以我不能使用它,因为如果我把 放在 之前\vfill\section它什么也不做(我认为这是因为章节标记了新页面的开始?)。有什么办法可以实现吗?

\documentclass[a4paper,12pt]{article}  
\begin{document}
\section{Some Previous Section}
Some previous text
\newpage
%\vfill does nothing here
\section*{Some Section Title}
%nor does it do anything here
This text, as well as the title, needs to be at the bottom of the page, to the top.
\end{document}

相关内容