I am using a CV template that indents all text within a section (the template can be found here). I want to remove the indents, and my 'solution' has been to repeatedly type \hspace{-0.8em}. Surely there is a better way?
UPDATE: A minimal working example is here:
\documentclass{resume}
\usepackage[left=0.75in,top=0.6in,right=0.75in,bottom=0.6in]{geometry}
\begin{document}
\begin{rSection}{Education}
{\bf University of Sydney} \hfill {\em 2013-2019} \
\end{rSection}
\end{document}
As one can check, neither \noindent nor \setlength\parindent{0pt} fix the problem...
resume.clsclass inside your template. Find the definition of therSectionenvironment and you'll note that it issues alistenvironment with\setlength{\leftmargin}{1.5em}. Change that to\setlength{\leftmargin}{0em}and you'll see the change. – Werner Aug 05 '21 at 23:15