I am currently working on my resume and I am trying to make it modular.
I have a content folder which has different .tex file for each section in resume such as education.tex, experience.tex, and projects.tex. I want to write all the contents in these section files and include selective heading into master file.
For Example: projects.tex will have all the projects I have ever done. I want to include the top three relevant in master.tex file. How can I do so?
My master.tex file should look like:
\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}
Please suggest if there is some other better method to make it modular
.texfile for all the projects, experiences, etc.? Don't you think it'll be challenging to maintain the documents? – Satyam Gaba Jan 02 '20 at 23:29