I've written my resume in LaTeX, however I think it would be useful to have the ability to compile a longer, multi-page version for certain jobs (such as ones requiring the federal format).
Right now, to compile I just run make, and I have a makefile set up to compile the pdf. However ideally I could run make onepage or make full to compile different versions.
Is there a way in LaTex to do something like this?
\input{resumesection_education.tex}
\input{resumesection_experience.tex}
\ifmultipage{ % is this possible?
\input{resumesection_projects.tex}
\input{resumesection_extracurriculars.tex}
}
this way my education and experience (written in their own .tex files) would be included in all versions, but the projects and extracurriculars would only be included in the full / multipage versions?