How can I select which section I want to compile and which section I do not want to compile? I am using XeLatex to compile the document. Sometimes the text in each section is long and I don't want to comment and uncomment all of the text inside the section every time I run the script. Every time I am running, need to compile different set of sections. It would be easier to have an easy way to do it. Or just comment/uncomment a particular section line instead of comment/uncommenting the whole text inside.
The question here, suggests to break the file in to multiple files and then run the main script (within the main script one can choose the desirable file(s) to compile). However, I am interested to know is it possible to do it within a single file?
\documentclass[a4paper,10pt]{article}
\usepackage{xunicode,xltxtra,url,parskip}
\usepackage[usenames,dvipsnames]{xcolor}
\usepackage[big]{layaureo}
\usepackage{hyperref}
\definecolor{linkcolour}{rgb}{0,0.2,0.6}
\hypersetup{colorlinks,breaklinks,urlcolor=linkcolour,linkcolor=linkcolour}
\usepackage{titlesec}
\titleformat{\section}{\Large\scshape\raggedright}{}{0em}{}[\titlerule]
\titlespacing{\section}{0pt}{3pt}{3pt}
\usepackage{tabularx}
\begin{document}
\pagestyle{empty}
\section{Personal Data}
some text heresome text heresome text heresome text heresome text heresome text heresome text heresome text heresome text heresome text here
\section{Education}
some text heresome text heresome text heresome text heresome text heresome text heresome text heresome text heresome text heresome text here
\section{Work Experience}
some text heresome text heresome text heresome text heresome text heresome text heresome text heresome text heresome text heresome text here
\section{Hobbies}
some text heresome text heresome text heresome text heresome text heresome text heresome text heresome text heresome text heresome text here
\section{Interests}
some text heresome text heresome text heresome text heresome text heresome text heresome text heresome text heresome text heresome text here
\section{Skills}
some text heresome text heresome text heresome text heresome text heresome text heresome text heresome text heresome text heresome text here
\section{MISC}
some text heresome text heresome text heresome text heresome text heresome text heresome text heresome text heresome text heresome text here
\end{document}