Curricula Vitae / Résumés ⇒ Twenty Seconds Resume/CV - Spacing Question
Twenty Seconds Resume/CV - Spacing Question
Here is the resume template I am using. In the skills section, I have moved the text inside the bars rather than above, and now I would like to remove the excess vertical spacing between each bar. (I need to conserve space because my list of programming languages is running off the page). Any help would really be appreciated, as I have spent a while trying to figure it out, but my LaTeX knowledge appears to be lacking.
Thanks
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Re: Twenty Seconds Resume/CV - Spacing Question
Re: Twenty Seconds Resume/CV - Spacing Question
Information about the changes I made is just motivation for the problem. If you don't like it, ignore it. You don't have to know what I did to answer the question.
-
- Posts: 162
- Joined: Wed Jun 17, 2009 10:18 pm
Twenty Seconds Resume/CV - Spacing Question
Code: Select all
\documentclass{article}
\usepackage{tikz}
\definecolor{mainblue}{HTML}{0E5484}
\definecolor{maingray}{HTML}{B9B9B9}
\newcommand\skills[1]{
\renewcommand{\skills}{
\begin{tikzpicture}
\foreach [count=\i] \x/\y in {#1}{
\draw[fill=maingray,maingray] (0,\i) rectangle (6,\i+0.4);
\draw[fill=white,mainblue](0,\i) rectangle (\y,\i+0.4);
\node [above right] at (0,\i+0.4) {\x};
}
\end{tikzpicture}
}
}
\begin{document}
\skills{{pursuer of rabbits/5.8},{good manners/4},{outgoing/4.3},{polite/4},{Java/0.01}}
\skills
\end{document}
But that doesn't help you of course, since you wanted to use less vertical space. So you need to change the y-coordinates. Try replacing all \i with \i*0.5, for example.