[Help] [LaTeX top]

Letters in Latex

This file contains the following

CSLI local variants

We have several local latex styles for letter head.
csli-letter
for CSLI letterhead
suletter
For Stanford letterhead with or without the Stanford logo
Older styles include
suletter-nographics
For Stanford letterhead with no Stanford logo (obsolete, use suletter with the no-logo option [\usepackage[no-logo]{suletter})
ssp
for Symbolic Systems Letterhead
ling
for linguistics department letterhead
philosophy-letter
for philosophy letterhead

What a latex letter file should look like.

For an extensive example of the use of the style, type
latex csli-letter.tex
lpr csli-letter.dvi
The short form is to do
\documentclass{letter}

\usepackage{csli-letter}

\signature{Your name}
\address{Your address}
\telephone{Your telephone number}


\begin{document}

\begin{letter}{to address}

\opening{salutation}

....text of letter

\closing{closing}

...postscripts, etc

\end{letter}
\end{document}

Stanford guidelines for addresses

Note that the University Administrative guidelines suggest that addresses to people at the University be of the form
line 1: person's name
line 2: Stanford University
line 3: department, building, and room number
line 4: Stanford, CA 94305-nnnn (mailcode)

How to use a date other than today's

To change the date you need to redefine \today. For instance to make the date, January 1, 1993 do
\def\today{January 1, 1993}
before the \begin{letter} command

If you wish to change the format of the date, for instance to make the date appear as 1 January 1993 and so on, the actual definition is

\def\today{\ifcase\month\or January\or February\or March\or April\or May\or June\or July\or August\or September\or October\or November\or December\fi \space\number\day, \number\year}
and to change the format to the above example, you do
\def\today{\number\day\space\ifcase\month\or January\or February\or March\or April\or May\or June\or July\or August\or September\or October\or November\or December\fi \number\year}

[CSLI] [Help] [Stanford] [Search CSLI help pages] [Search CSLI pages] [Search Stanford]
Emma Pease
Last modified: Fri May 4 14:37:57 PDT 2001 by emma@csli.stanford.edu