Curricula Vitae / Résumés ⇒ Adding Subsections to Friggeri CV
Adding Subsections to Friggeri CV
I would like to have three subsections underneath the experience section: (1) teaching experience, (2) professional experience, and (3) consulting experience. How do I do this using cv_10.tex & friggeri-cv.cls (part of the friggeri template)?
I have done this using the moderncv template. Perhaps this template does not lend itself well to subsections? Please advise. Thanks!
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Adding Subsections to Friggeri CV
I've figured out how to create subsections using \textbf.
Code: Select all
\section{research}
\textbf{SELECTED EXPERIENCE}
I've tried to tweak the following section in the cls file, but that didn't work.
Code: Select all
\RequirePackage[left=4cm,top=2cm,right=1cm,bottom=2.5cm,nohead,nofoot]{geometry}
Does anyone have any helpful hints? Thanks!
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Re: Adding Subsections to Friggeri CV
can you show us a stripped down version of your actual document, that gives us something to test? I am not familiar with the template.
You can replace your personal information with some filler text about ducks, or your favourite charackter in a book. Maybe the templates comes with an example that you can tweak to show us the behaviour you are describing with words.
Adding Subsections to Friggeri CV
I've had a look at this and have found the issue. The friggeri-cv.cls file actually has code for a subsection style so when I tried to use one and it didn't work I had a closer look at it. It turns out the code was incorrect, this is the old version:
Code: Select all
\renewcommand{\subsection}[2]{
\par\vspace{.5\parskip}%
\Large\headingfont\color{headercolor} #2%
\par\vspace{.25\parskip}%
}
Code: Select all
\renewcommand{\subsection}[1]{
\par\vspace{.5\parskip}%
{\Large\headingfont\color{headercolor} #1}
\par\vspace{.25\parskip}%
}
I will now update the template on the website to incorporate this change as I think it would be useful to many other people.
Cheers,
Vel
- Attachments
-
- Screen Shot 2015-05-03 at 12.09.22 pm.png (195.71 KiB) Viewed 8647 times
Re: Adding Subsections to Friggeri CV
Cheers,
Vel