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?
I have tried doing this using \noindent or \setlength\parindent{0pt}. However, neither of these seem to eliminate the indent (I'm not sure why...) Below is an example which includes \setlength\parindent{0pt} but nonetheless has an indent.
\documentclass{resume}
\usepackage[left=0.75in,top=0.6in,right=0.75in,bottom=0.6in]{geometry}
\setlength\parindent{0pt}
\begin{document}
\begin{rSection}{Education}
{\bf University of Sydney} \hfill {\em 2013-2019} \
\end{rSection}
\end{document}
Note: I recently asked this question but it was closed because it is allegedly answered here. However, the solution to that question was to use \noindent or \setlength\parindent{0pt} - and the whole point of my question is that these don't seem to work here! So I'm not sure why the question was closed... (and there doesn't seem to be any way for me to reverse this except to repost the question).