在文档中间更改标题/作者

在文档中间更改标题/作者

我正在为我校本科生创建一本内部“玩具”日记本。我获取了 CTAN 提供的日记本模板,以便制作这本玩具日记本。

当尝试构建它时,我制作了一个“母” .tex 并将各种\include{paper1},...\include{paper i }, ... \include{paper n}内容放在一起。

但是,标题和作者从第一篇开始就被固定了\include{paper1}。即使我在第二篇论文中更改它们,它们也无法正确显示(它们显示为普通文本),并且以前的标题/作者会不断重新出现在页面上。

我希望找到解决这个问题的方法,如果可能的话,请提供关于如何“建立”类似日记之类的东西的参考资料。提前致谢。

答案1

根据结合文档中,以下代码包含两篇论文作为带有目录的会议记录模型:

\documentclass[11pt]{combine}
\title{Proceedings of the ...}
\author{A. N. Editor\thanks{Support ...}}
\begin{document}
\pagestyle{combine}
\maketitle
\tableofcontents
\clearpage
\section{Editor's introduction} \label{intro} 
In the article by A.~N.~Author on page~\pageref{art1} ...
\begin{papers}
\coltoctitle{An article}
\coltocauthor{A.~N.~Author}
\label{art1}
\import{art1}
\coltoctitle{Another article}
\coltocauthor{A.~N.~Other}
\label{art2}
\import{art2}
\end{papers}
\clearpage
\section{Acknowledgements}
Among the many ...
\end{document}

这可能是 art1.tex:

\documentclass{article}
\title{An article}
\author{A.~N.~Author}
\begin{document}
\maketitle
My paper.
\end{document}

这可能是 art2.tex:

\documentclass{article}
\title{Another article}
\author{A.~N.~Other}
\begin{document}
\maketitle
My paper.
\end{document}

相关内容