The second issue is that the vertical space right after the section title is greater in the right hand side with respect to the left sidebar. I managed to add a
Code: Select all
\par\vspace{parskip}
Thanks.
Code: Select all
\par\vspace{parskip}
Code: Select all
\RequirePackage[absolute,overlay]{textpos}
\setlength{\TPHorizModule}{1cm}
\setlength{\TPVertModule}{1cm}
\newenvironment{aside}{%
\let\oldsection\section
\renewcommand{\section}[1]{
\par\vspace{\baselineskip}{\Large\headingfont\color{headercolor} ##1}
}
\begin{textblock}{3.6}(1.5, 4.33)
\begin{flushright}
\obeycr
}{%
\restorecr
\end{flushright}
\end{textblock}
\let\section\oldsection
}
Code: Select all
\renewcommand{\section}[1]{
\par\vspace{\parskip}
{%
\LARGE\headingfont\color{headercolor}%
\@sectioncolor #1%
}
\par\vspace{\parskip}
}
\renewcommand{\subsection}[1]{
\par\vspace{.5\parskip}%
{\Large\headingfont\color{headercolor} #1}
\par\vspace{.25\parskip}%
}
\renewcommand{\subsubsection}[2]{
\par\vspace{.5\parskip}%
{\Large\headingfont\color{headercolor} #2}
\par\vspace{.25\parskip}%
}
\pagestyle{empty}
Code: Select all
\par\vspace{\parskip}
even if the compiled version looks fine (the space I want is there so that it looks ok). Any ideas on how to get it in a cleaner way?! LaTeX Error: There's no line here to end.
Code: Select all
\documentclass[]{friggeri-cv}
\begin{document}
\header{Your}{Name}{Whatever}
\begin{aside} % In the aside, each new line forces a line break
\section{contact}
Your Street
Your Street Again
~
Your Number
\end{aside}
\section{Your Section}
Your text.
\end{document}