0

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...

  • 6
    Does this answer your question? Set noindent for entire file – Oni Aug 03 '21 at 22:51
  • Thanks for the suggestion -- unfortunately, it doesn't work. I'll add a minimal working example to the question so it's easier to others to understand what's going on – afreelunch Aug 04 '21 at 08:50
  • Can someone explain to me why the question has been closed? As I have explained, the solution to the `duplicate' question does not work. – afreelunch Aug 04 '21 at 09:48
  • @afreelunch: I'd suggest editing the resume.cls class inside your template. Find the definition of the rSection environment and you'll note that it issues a list environment with \setlength{\leftmargin}{1.5em}. Change that to \setlength{\leftmargin}{0em} and you'll see the change. – Werner Aug 05 '21 at 23:15

1 Answers1

2

Try \noindent for the line or if want no indent at all set in the preamble \setlength\parindent{0pt}.

Oni
  • 705
  • Hi Oni, thanks for the idea. However, this unfortunately doesn't fix the problem (I have now posted a MWE to make it easier to see what works and what doesn't) – afreelunch Aug 04 '21 at 08:57