deedy / Deedy-Resume

A one page , two asymmetric column resume template in XeTeX that caters to an undergraduate Computer Science student

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fix alignment of employer and position

nickyr opened this issue · comments

Right now, the alignment of employers and positions is a little off. There's an extra space before the "|".

By changing

\newcommand{\runsubsection}[1]{\color{subheadings}
\fontspec{Helvetica}\fontsize{12pt}{12pt}\selectfont\bfseries\uppercase {#1} \normalfont}

to

\newcommand{\runsubsection}[1]{\color{subheadings}
\fontspec{Helvetica}\fontsize{12pt}{12pt}\selectfont\bfseries\uppercase {#1}\normalfont}

(removing the space after #1), the extra space goes away.

Before, with underscores for spaces:
EMPLOYER__|_Position
After:
EMPLOYER_|_Position

I think I actually prefer the two spaces. Perhaps this was an intentional design decision?