我想在标题页底部插入一些文本,但如果将文本放得太低,文本总是会转到下一页。我可以强制文本停留在同一页上,或者减少页面底部的边距,仅用于标题页吗?
答案1
我不确定我是否理解了您的问题,但假设您想在页面底部排版某些内容,可以使用来完成\vfill
。
\documentclass{article}
\begin{document}
Text at the top of the page
\vfill
Text at the bottom of the page
\end{document}