将文件中的子项包含到主文件中

将文件中的子项包含到主文件中

我目前正在制作简历,并尝试将其模块化。
我有一个内容文件夹,其中.tex针对简历中的每个部分(例如、和)都有不同的文件education.texexperience.texprojects.tex想将所有内容写入这些部分文件中,并将选择性标题包含在主文件中。

例如:projects.tex将包含我曾经做过的所有项目。我想将最相关的三个项目包含在master.tex文件中。我该怎么做?

我的master.tex文件看起来应该是这样的:


\input{documentSettings}
\input{customCommands}

\begin{document}
    \input{content/00_heading}
    \input{content/01_education}
          \input{edu1}
          \input{edu2}
    \input{content/02_experience}
          \input{exp1}
          \input{exp2}
    \input{content/03_projects}
          \input{proj1}
          \input{proj2}
          \input{proj3}
    \input{content/04_techincal_skills}
\end{document}

请建议是否有其他更好的方法使其模块化

相关内容