合并不同格式的 LaTeX 文件

合并不同格式的 LaTeX 文件

我正在尝试编写一个包含各种 LaTeX 文件的教学档案。我有一个主文件,想调用其他文件,同时保留其他文件的格式。不过我确实想把我的名字放在文档第一页(目录)之后的每一页的页脚中。

有没有人有什么建议?

我的主要文件当前是:

\documentclass{article}
\usepackage{standalone,geometry,lscape}
\usepackage[utf8]{inputenc}
%\usepackage{TylerClarkCommands}
\title{Teaching Portfolio}
\author{Tyler Clark}
\date{Fall 2014}
\renewcommand*\contentsname{Table of Contents}
\begin{document}
\maketitle
\tableofcontents
\newpage
\addcontentsline{toc}{section}{CV}
\newgeometry{left=1in,bottom=1.3in,top=1.5in,right=1in}
\input{../../../../Resume_CV/ThomasTylerClarkCV}
\newpage
\addcontentsline{toc}{section}{Teaching Philosophy}
\begin{center}
Teaching Philosophy
\end{center}
 \input{TeachingPhilosophy}
\newpage
\addcontentsline{toc}{section}{Mathematics for Calculus Course Plan}
\begin{center}
Mathematics for Calculus Course Plan
\end{center}
\input{MathforCalcCoursePlan}
\end{document}

Now for the CV, I have something like

\documentclass{article}
\oddsidemargin=.15in
\evensidemargin=.15in
\textwidth=6in
\topmargin=-.5in
\textheight=9.1in
\parindent=0in
\pagestyle{empty}
\begin{document}
\begin{center}
{\Large NAME} \\[.5pc]
SCHOOL \\
ADDRESS\\
ADDRESS\\
CONTACT $\;$\\
\end{center}
{\large \bf Education} \\*[-.8pc]
\underline{\hspace{6in}} \\
\\
%{\bf School stuff} \\
%Anticipate completion and defense of dissertation in May. \\
%\\
\end{document}

答案1

单独编译文档,将 pdf 文件作为图片包含在主文件中,并添加页脚,这似乎是最简单的解决方案。

例如或者包含带有 pdfpages 的外部文档的问题。

相关内容