我想要有普通的 LaTeX 首页,然后是我大学的首页,然后是普通的内容。
我的短信
\documentclass[twocolumn]{revtex4-1} % use prl for onepage
\usepackage{pdfpages}
\usepackage{amsmath, amsfonts, amssymb, textcomp}
\usepackage[T4, OT1]{fontenc}
\usepackage{newunicodechar}
\usepackage{multirow}
\begin{document}
\title{La la la}
\author{Masi}
\maketitle
\begin{titlepage}
\begin{flushright} \large
\emph{Supervisor:} \\
Dr.~Mark \textsc{Brown}
\end{flushright}
% Bottom of the page
{\large \today}
\end{titlepage}
\clearpage
\includepdf[pages={1}]{abstract_1.pdf}
\clearpage
Content here la la la
\end{document}
我明白了
所以问题是首页看起来不对,首页的文本溢出到下一页。它应该是正常的 LaTeX 版本,大标题在页面中央,文本在标题下方。
我现在有的文本\开始{标题页} ... \结束{标题页}位于 pdf 页面的顶部,这是错误的。
如何获得默认的 LaTeX 首页?
为什么内容会溢出到 pdf 页面的顶部?
答案1
您只需将其放入环境\maketitle
中titlepage
即可获得您想要的内容:
代码(我还添加了一个\vfill
,假设\today
您希望它位于页面底部):
\documentclass[twocolumn]{revtex4-1} % use prl for onepage
\usepackage{pdfpages}
\usepackage{amsmath, amsfonts, amssymb, textcomp}
\usepackage[T4, OT1]{fontenc}
\usepackage{newunicodechar}
\usepackage{multirow}
\begin{document}
\title{La la la}
\author{Masi}
\begin{titlepage}
\maketitle
\begin{flushright} \large
\emph{Supervisor:} \\
Dr.~Mark \textsc{Brown}
\end{flushright}
% Bottom of the page
\vfill
{\large \today}
\end{titlepage}
\clearpage
\includepdf[pages={1}]{abstract_1.pdf}
\clearpage
Content here la la la
\end{document}