
Now what I'm trying to do, is to assemble a complete "letter of application" consisting of
A) a cover letter (Dear company xyz, I'd like....)
B) a cover sheet ( containing my cute little photo, and a quick personal overview )
C) my CV
D) and my "About Me" page (I'm a ambitious, play piano, speak 42 languages, blah blah)
What I've done so far:
cover letter: written with SCRLTTR2 (A)
cover sheet: written with SCRARTCL (B)
TODO
write an "About Me" page with SCRARTL
write the CV with moderncv
My problem starts with the layout and positioning of the header. As you can see from
the attached side-by-side comparison there is a huge difference in the positioning of the headers, especially
if you look at the job title. The upper part in the screenshot belongs to the cover sheet (B), the
lower part belongs to the cover letter (A).
My goal would be to have exactly the same looking header across all documents. I.e. same width,
same overall font size, same distance to the upper margin, a blue sep. line in the cover letter.
For the header in the cover sheet (B) I'm using the scrpage2 class. The header definition looks as follows:
Code: Select all
\chead{\addfontfeature{LetterSpace=20.0}\fontsize{36}{36}\selectfont\scshape\name\\[5mm]\fontsize{21}{21}\selectfont\scshape\jobtitle}
Code: Select all
\firsthead{
\centering
{\addfontfeature{LetterSpace=20.0}\fontsize{36}{36}\selectfont\scshape\usekomavar{fromname}}\\[5mm]
\fontsize{21}{21}\selectfont\scshape\jobtitle\\
}
Can you please help me to fix this? The next step would be to have the same footer in all 3 documents and
then also in the CV (same header and footer using moderncv).
Disclaimer: I already posted the this problem on a German LaTeX board, but there doesn't seem to be much traffic.
In any case, this is the link: http://www.golatex.de/layout-von-scrltt ... t5532.html
Anyway here are my MWE's. Cheers!
CoverLetter.tex
Code: Select all
%based on: http://stefano.italians.nl/archives/55
\documentclass[standard-minimal]{scrlttr2}
\begin{document}
\begin{letter}{%
IBM\\%
Schönestraße 1\\%
xxxx München
}
\setkomavar{subject}{Bewerbung als ....}
\opening{Sehr geehrte.....}
bla
\closing{Mit freundlichem Gruß}
\newpage
\end{letter}
\end{document}
Code: Select all
\ProvidesFile{standard-minimal.lco}[%
2002/07/09 v0.9a LaTeX2e unsupported letter-class-option]
\usepackage{polyglossia,
fontspec,
marvosym
}
\usepackage[]{scrpage2}
\setdefaultlanguage{german}
% ==============================================
% PERSONAL DATA
% ==============================================
\setkomavar{fromname}{Heiko Schmitz}
\setkomavar{fromaddress}{Ferberstraße 6, 50591, Köln, Germany}
\setkomavar{fromphone}{+49 (0) 221 714131}
\setkomavar{fromemail}{Heiko.Schmitz@gmail.com}
\setkomavar{signature}{Heiko Schmitz}
\newcommand{\jobtitle}{Software Engineer - Java Specialist}
% ==============================================
% FORMATTING STUFF
% ==============================================
\KOMAoptions{foldmarks=false}
% === font settings
\defaultfontfeatures{Mapping=tex-text}
\setmainfont{GaramondPremrPro}
\setsansfont{GillSansMTPro-Light}
%set the font size and leading
\renewcommand{\normalsize}{\fontsize{12}{17}\selectfont}
% ==============================================
% HEADER STUFF
% ==============================================
\pagestyle{scrheadings}
% === header settings
\firsthead{
\centering
{\addfontfeature{LetterSpace=20.0}\fontsize{36}{36}\selectfont\scshape\usekomavar{fromname}}\\[5mm]
\fontsize{21}{21}\selectfont\scshape\jobtitle\\
}
% ==============================================
% FOOTER STUFF
% ==============================================
% === footer settings
\firstfoot{
\centering
\addfontfeature{LetterSpace=20.0}\scshape
{
\renewcommand{\\}{\ {\large\textperiodcentered}\ }
\usekomavar{fromaddress}
}\\
{\Large\Letter} \usekomavar{fromemail} \ {\Large\Telefon} \usekomavar{fromphone}
}
\endinput
CoverSheet.tex
Code: Select all
%\documentclass[12pt,DIV=12,BCOR=0.0pt,mmparskip=half-]{scrartcl}
\documentclass[]{scrartcl}
\usepackage{polyglossia,
geometry,
color
}
\usepackage[]{scrpage2}
\setdefaultlanguage{german}
% ==============================================
% PERSONAL DATA
% ==============================================
\newcommand{\jobtitle}{Software Engineer - Java Specialist}
\newcommand{\name}{Heiko Schmitz}
% ==============================================
% GEOMETRY STUFF
% ==============================================
%\areaset{448.13095pt}{635.5pt}
% ==============================================
% FONT STUFF
% ==============================================
% set the font size and leading
\renewcommand{\normalsize}{\fontsize{12}{17}\selectfont}
% font settings
\defaultfontfeatures{Mapping=tex-text}
\setmainfont{GaramondPremrPro}
\setsansfont{GillSansMTPro-Light}
% ==============================================
% HEADER STUFF
% ==============================================
\pagestyle{scrheadings}
\setheadsepline[text]{.4pt}[\color{blue}]
\chead{\addfontfeature{LetterSpace=20.0}\fontsize{36}{36}\selectfont\scshape\name\\[5mm]\fontsize{21}{21}\selectfont\scshape\jobtitle}
% ==============================================
% CONTENT
% ==============================================
\begin{document}
\begin{tabular}{l r}
\\
\\
\\
\textbf{als} & Junior Softwareingenieur/in für embedded Software im Bereich Hubschraubersysteme\\
\end{tabular}
\end{document}