大家早上好,我正在完成我的学士学位论文的最后一页。作为最后一页,我决定保留标题页 ;)
我在网上搜索了一些不错的模板,最终想到了一个非常简单整洁的页面,其中只有一条垂直线和所需数据(论文标题、个人姓名、大学名称、导师姓名)。
我尝试重新创建的模板如下(来自 Siarhei Khirevich 的讨论文件):模板(26 MB)但基本上,我不知道该怎么做。
我所取得的成就是这样的(我在另一个网页上找到了这段代码,但不幸的是我再也找不到它了;()
\documentclass{book}
\begin{document}
\pagestyle{empty}
\hbox{
\hspace*{0\textwidth} % Whitespace to the left of the title page
\rule{1.5pt}{\textheight} % Vertical line
\parbox[b]{0.75\textwidth}{ % Paragraph box which restricts text to less than the width of the page
{\noindent\Huge\bfseries Complexity \\[0.3\baselineskip] Economics}\\[2\baselineskip] % Title
{\large \textit{with the supervision of Prof.}}\\[4\baselineskip] % Tagline or further description
{\Large \textsc{My name}} %
\vspace{0.1\textheight} % Whitespace between the title block and the publisher
{\noindent University of X \\
Course
Accademic Year
}\\[\baselineskip] % Publisher and logo
}
}
\end{document}
目标:
有人可以告诉我如何完成模板吗?;)
谢谢 ;)
答案1
这是不带 的粗略近似值tikz
。有了tikz
,一切就轻而易举了。
\documentclass{book}
\usepackage[pass]{geometry}
\begin{document}
\begin{titlepage}
\newgeometry{left=2in,top=0cm,bottom=0cm}
\noindent
\begin{minipage}{\textwidth}
\rule{1.5pt}{0.3\textheight}% Vertical line
\vspace{5mm}
\noindent
{\Huge\bfseries Complexity \\[0.3\baselineskip]
Economics}\\[2\baselineskip]
{\large \textit{with the supervision of Prof.}}\\[4\baselineskip]
{\Large \textsc{My name}} %
\vspace{0.1\textheight} % Whitespace between the title block and the publisher
\noindent
University of X \\
Course
Accademic Year
\\[\baselineskip] % Publisher and logo
\makebox[0pt][l]{\rule{1.5pt}{0.35\textheight}}% Vertical line
\end{minipage}
\end{titlepage}
\end{document}