你好,我正在写论文。我需要的封面如下。
Dissertation Title
My name
(centered)
A dissertation submitted
to University....
(centered)
Copyrights This copy of
Dissertation supplied...
但我不知道具体该怎么做。有人能帮我吗?
答案1
以下是示例代码,您可以从以下代码开始:
\documentclass[a4paper]{article}
\begin{document}
\thispagestyle{empty}% empty header/footer
\begin{center}\strut
\bfseries\Huge
Dissertation Title
\end{center}
\vfill
\centerline{My name}
\vfill
\begin{center}\strut
A dissertation submitted \\
to University \ldots\\
So and So
\end{center}
\vfill
\begin{center}\strut
Copyrights This copy of \\
Dissertation supplied...
\end{center}
\clearpage
%If required, add body text from here
\end{document}