![フロントページのタイトルと写真の配置](https://rvso.com/image/298801/%E3%83%95%E3%83%AD%E3%83%B3%E3%83%88%E3%83%9A%E3%83%BC%E3%82%B8%E3%81%AE%E3%82%BF%E3%82%A4%E3%83%88%E3%83%AB%E3%81%A8%E5%86%99%E7%9C%9F%E3%81%AE%E9%85%8D%E7%BD%AE.png)
OpenOffice で作成したもの (添付) と同じように、LaTeX でフロントページを作成したいと考えています。つまり、大学名、論文のタイトルのヘッダーと、右上に小さな画像を配置する場所が必要です。これを最も簡単に実現する方法の例をいくつか見ることができますか?
添付の画像は表紙の上半分のみを示しており、残りは空白です。
答え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}
以下が得られます: