如何在 LaTeX 中重现此论文封面?

如何在 LaTeX 中重现此论文封面?

我正在打论文封面,我们学校有排版要求,这个链接

http://www.helsinki.fi/socialsciences/studying/current/thesis_cover.pdf

我需要在我的 LaTeX 设置中重现这个封面;有人可以教我怎么做吗?

答案1

使用titlepage环境。假设你使用一个单独的 tex 文件,将其包含\input{filename}在主文件中,你的标题页 tex 文件应该看起来像这样

\begin{titlepage}
\setlength{\parindent}{0pt} %remove indent at new paragraph

\vspace*{5cm} %vertical space

\textbf{
    \huge{
        \textsc{
        The title of the series
        }
    }
}\\[25mm] %space after line

\textbf{
    \Large{
    Possible Subtitle   
    }
}

\vspace*{10cm} %vertical space

\begin{tabularx}{\textwidth}{p{10cm} X}
&   Name \\
&   University \\
&   Faculty \\
&   Major \\
&   Date \\
\end{tabularx}

\end{titlepage}

这有点草率。我没有把您示例中的所有正确文本都放进去,但我希望您能理解所有内容。

您需要\vspace*{distance}稍微调整一下,也许还需要调整p{distance}tabularx 表中的。关于这一点,您当然需要

    \usepackage{tabularx}

在您的序言中。还有其他对齐文本的方法(例如塔托我更喜欢使用包来表示我的偏好(但我更喜欢使用表格)。

希望对您有所帮助;如果您有疑问,请发表评论。

相关内容