你好,我想在论文前言中插入一个新页面。新页面标题应该是“作者贡献”。我找不到任何解决方案。
我发现最接近的做法是使用 abstract 并将其重命名为其他名称。但是,这样做会覆盖当前的 abstract 部分。
我试过:
\documentclass[12pt]{report}
\begin{abstract}
\renewcommand{\abstractname}{Executive Summary}
content...
\end{abstract}
答案1
\documentclass[12pt]{report}
\usepackage{enumitem} %not really needed
\title{Theory about Brontosaurs}
\author{Miss Ann Elk \and Gandalf}
\newcommand{\MyPrefaceTitle}{%
\begin{center}
\Large
\textbf{Contribution of Authors}
\end{center}
\begin{itemize}
\item Author 1 wrote the title
\item Author 2 wrote the author names
\item Author 3 did nothing but gets all the merits
\end{itemize}
\clearpage
}
\begin{document}
\maketitle
\MyPrefaceTitle
\begin{abstract}
\renewcommand{\abstractname}{Executive Summary}
content...
\end{abstract}
\end{document}