为首页定位标题和图片

为首页定位标题和图片

我想用 LaTeX 制作一个首页,就像我在 OpenOffice 中制作的一样(附件),也就是说,应该有一个标题,上面写着大学名称、论文标题,右上角有一个小图片的位置。我能看到一些如何最轻松地实现这一点的示例吗?

附图仅显示首页的上半部分,其余部分是空白的。

在此处输入图片描述

答案1

使用包fancyhdr。最小示例如下。

\documentclass{article}

\usepackage{fancyhdr}
\usepackage{graphicx}

\renewcommand{\headrulewidth}{0pt} % this is the line thickness under the header - 0pt for no line
\renewcommand{\footrulewidth}{0pt} % and above the footer

\pagestyle{fancy} % to apply your fancy header and footer

\lhead{University of X\\ {\small Faculty of X}}
\rhead{\includegraphics[height=35pt,keepaspectratio]{noimage}}

\setlength\headheight{40pt} % you might want to modify this number so it does not show overfull boxes, if you have bigger image or more text in the header

\begin{document}

\section*{This is the title of the thesis}
\subsection*{A study on how to make front pages with \LaTeX}

\end{document}

你会得到:

在此处输入图片描述

相关内容