我想在报告的标题名称上方插入文本。
\title{This is the title}
\author{George\\
\\
\\
\texttt{email}}
\date{\today}
例如,我想在纸上打印该学院。“...大学”(在标题上方或下方,在页面末尾)另外,我是否想在第一页中包含图像?
答案1
要在页面的给定位置设置某些信息,我推荐使用这个包文本位置. 您可以将文本设置在页面上的绝对位置(通常为徽标或类似图形),或相对于另一个文本。
下面是一个 MWE,将文本放在第一页的右上方,将徽标(黑框)放在左下方。要更改位置,请增加或减少括号内的第一位数字以水平移动文本/图形,增加或减少第二位数字以垂直移动。
\documentclass[demo,a4paper]{article}
\usepackage{blindtext,graphicx}
\usepackage[absolute]{textpos}
\setlength{\TPHorizModule}{1cm}
\setlength{\TPVertModule}{1cm}
%\TPGrid[1mm,1mm]{10}{15} % Uncomment to have a grid on the page
\begin{document}
\begin{textblock}{5}(14,1)
\noindent\Large University of Nowhere
\end{textblock}
\begin{textblock}{5}(1,27)
\includegraphics[height=1.cm,width=5cm]{Demo}
\end{textblock}
\title{MyThesis}
\author{M.\,Y.\,Alterego}
\maketitle
\section{Sirst section}
\Blindtext
\Blindtext
\end{document}