[Tex/LaTex] Letterhead creation query

koma-scriptletterheadscrlttr2

I am new to Latex but wish to learn more. Does anyone here know how to create a letterhead using Latex? It will consist of a small image on the top left-hand side of each page and some text to the right of that running all the way to the right-hand side. Please note I only know the very basics so will need a step-by-step answer. I have already looked on the net but didn't understand the solutions I saw as they seemed to be aimed at more advanced people than myself.

Best Answer

The KOMA-Script class scrlttr2 is a very versatile class to produce letters according to certain standards (e.g. the german DIN) allowing, for example, for the correct positioning of the address to be visible through the window of the envelope.

The following MWE is a very basic example of howto use the scrlttr2 class with adjustments for your specific letter head.

\documentclass[paper=a4, backaddress=false, headlines=3, headinclude=true]{scrlttr2}

\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage{lipsum} % for filler text

\setkomavar{fromname}{Your Name}
\setkomavar{fromaddress}{Your Street 23, 42567 Your Town}
% replace \rule by \includegraphics{yourlogo} to get your logo
\setkomavar{fromlogo}{\rule{2cm}{2cm}} 
% here are the letter head definitions:
\setkomavar{firsthead}{\usekomavar{fromlogo} %
    \usekomavar{fromname}, \usekomavar{fromaddress}}
\setkomavar{nexthead}{\normalfont\usekomavar{fromlogo} %
    \usekomavar{fromname}, \usekomavar{fromaddress}\hfill}

\begin{document}
\pagestyle{headings}
\begin{letter}{Celebrity Name \\ Where they live \\ 23456 That Town}
\opening{Dear Celebrity,}

\lipsum % just some filler text to show the final layout

\closing{Yours truly,}
\end{letter}
\end{document}

Note that the head has to be defined twice (firsthead and nexthead), because scrlttr2 internally uses two different layouts for the first page and all consecutive pages, respectively.

For further details and many examples explaining the various options and parameters please se the extensive german or english manual of KOMA-Script.