Letters in LaTeX

My standard letter in LaTeX with the class scrlttr2 (created by a German to adhere to German letter guidelines):

\documentclass[fromalign=location, fromphone=true, fromemail=true, locfield=wide]{scrlttr2}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\setkomavar{fromname}{Max Mustermann}
\setkomavar{fromaddress}{Musterstr.\ 1\\12345 Musterstadt}
\setkomavar{fromphone}{01234/56789000}
\setkomavar{fromemail}{mustermx@provider.xy}
\setkomavar{signature}{Max Mustermann}
\setkomavar{subject}[]{}
\setkomavar{date}{7.\ August 2013}

\begin{document}
\begin{letter}{Jane Doe\\
Example street 2\\
54321 Exampleville
}
\opening{Dear Mrs.\ X,}
this is the letter I promised.
\closing{Kind regards,}
\end{letter}
\end{document}

The variables ‘from…’ set the sender, the recipient is given right after begin letter. The sender information can be set at strange places, for a very simple letter I use ‘fromalign=location’ which results in the sender information somewhere at the top right, a bit higher than the recipient, but not in the headline. With the standard settings the e-mail address is too wide for the sender field, so I widen it with ‘locfield=wide’.

This entry was posted in LaTeX and tagged , , , , by swk. Bookmark the permalink.

About swk

I am a software developr, data scientist, computational linguist, teacher of computer science and above all a huge fan of LaTeX. I use LaTeX for everything, including things you never wanted to do with LaTeX. My latest love is lilypond, aka LaTeX for music. I'll post at irregular intervals about cool stuff, stupid hacks and annoying settings I want to remember for the future.