16. LaTeX Letters
Producing letters is simple.
- Use document style letter.
|
\documentstyle{letter}
\begin{document}
\address{1234 Avenue of the Armadillos \\
Gnu York, G.Y. 56789}
\signature{R. (Ma) Dillo \\ Director of Cuisine}
\begin{letter}{G. Natheniel Picking \\
Acme Exterminators \\
Illinois}
\opening{Dear Nat,}
I'm afraid that the armadillo problem is still with us.
I did everything ...
... and I hope that you can get rid of the nasty
beasts this time.
\closing{Best Regards,}
\cc{Jimmy Carter\\Richard M. Nixon}
\end{letter}
\end{document}
|