将一段文字置于论文的中心

将一段文字置于论文的中心

我需要将以下段落置于纸张中央(纸张高度的中心)

宣言

我在此声明,本论文中的工作除引用和摘要外均为我个人所有,这些引用和摘要已得到正式承认。

我应该使用 \vspace*{1\baselineskip} 而且我还使用了geometry包。

谢谢。

答案1

\documentclass{article}
\usepackage[a6paper,showframe]{geometry}

\begin{document}

\clearpage
\null\vfill
\noindent
DECLARATION

\noindent
I hereby declare that the work in this thesis is my own except for quotations and summaries, which have been duly acknowledged.
\vfill
\clearpage

\end{document}

在此处输入图片描述

的选项geometry仅作为示例。

相关内容