I am trying to convert my CV below to latex. Currently I have manually created it in Inkscape. I have already managed to get the headings and footers right:
Code:
\usepackage{xcolor}
\usepackage{fancyhdr}
\usepackage{fontspec}
\definecolor{ihorange}{RGB}{241,98,55}
\setmainfont{Ubuntu Light}
\newfontface\footerfnt[LetterSpace=2.1]{Sansation}
\newfontface\headerfnt{Sansation Bold}
\newcommand\contactinfo{\fontsize{8pt}{8}\selectfont\headerfnt My address \\ postal code and city \\ telephonenr }
\newcommand\footertext{\fontsize{10pt}{15}\selectfont\footerfnt e: email@address /// w: www.ebsi.te /// skype: skyphandle /// twitter: @twitterhandle}
\newcommand\ColTopRule{%
{\noindent\color{ihorange}\rule{\textwidth}{1pt}}}
\newcommand\ColBotRule{%
{\noindent\color{ihorange}\rule{\textwidth}{1pt}}}
\newcommand\Header{%
\noindent\makebox[\textwidth][l]{%
\parbox{0.5\textwidth}{\contactinfo}%
\parbox{0.5\textwidth}{%
\hfill\includegraphics[height=25.409pt]{ihlogo}}}\par\vskip1ex%
\par\ColTopRule\par}
\newcommand\Footer[1]{%
\ColBotRule\par
\noindent
\hbox{\footertext}
}
\fancyhf{}
\fancyhead[C]{\Header}
\fancyfoot[C]{\Footer}
\renewcommand{\headrulewidth}{0pt}
\setlength\headheight{70pt}
\pagestyle{fancy}
But I'm struggling howto do the content. A typical cv-entry looks like this:
position
@ company/organisation
period of time
description of the job
What I want to achieve is that:
1) It all stays on 1 page
2) Space between textblocks are evenly distributed in each column from top to bottom of page
3) textblocks fill each columns vertically
4) I can control the color of each heading
5) If possible make use of a CV package that can be modified to look like this


europecv,moderncvorsimplecv?. May be is not exactly that you have in mind, but maybe enough considering the effort to develop another template. – Fran Sep 23 '12 at 11:13europecv,moderncv, adsimplecvin your comment? – Marc van Dongen Sep 23 '12 at 19:59