我的论文已经完成了。我正尝试在 latex 中复制以下论文页面。我做这件事很困难。
我尝试了以下代码,但它给出了相同的结果
$
\renewcommand{\maketitle}{
\thispagestyle{empty}
\vspace*{\fill}
\vspace{100pt}
\begin{center}
\Huge {title} \normalsize \\
\vspace{25pt}
Namel\\
\vspace{135pt}
\textsc{a thesis submitted in partial fulfillment\\
of the requirements for the degree of \\
\vspace{8pt}
degree \\
department \\
university \\
\vspace{10pt}
degreemonth, degreeyear}
\end{center}
\vspace*{\fill} }$
答案1
排版您请求中显示的首页非常简单。我将发布我的方法,但您必须了解有几种形式才能实现所需的格式。
以下是代码
\documentclass[11pt]{book}
\begin{document}
\thispagestyle{empty}
\begin{center}
Enter Thesis title\par
\vfill
by\par
\vfill
Enter Student's Full Name\par
\vspace{1.5in}
A thesis submitted in partial fulfillment of the requirements for the degree of\par
\vfill
Enter/select Full Degree name\par
\vfill
[in\par
\vfill
INSERT OFFICIAL DESCRIPTION OF SPECIALIZATION, if applicable]\par
\vspace{1.5in}
Enter/select the name of your Department\par
\vfill
\end{center}
\end{document}