Skip to content

Instantly share code, notes, and snippets.

@ashwin
Created January 2, 2013 06:31
Show Gist options
  • Star 20 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save ashwin/4432684 to your computer and use it in GitHub Desktop.
Save ashwin/4432684 to your computer and use it in GitHub Desktop.
Simple letter template for LaTeX
%-----------------------------------------------------------------------------%
% Letter class
\documentclass[a4paper, 10pt]{letter}
% Name of sender
\name{Joe Fox}
% Signature of sender
\signature{Joe Fox}
% Address of sender
\address
{
Fox Books,\\
Times Square, NYC.
}
%-----------------------------------------------------------------------------%
\begin{document}
% Name and address of receiver
\begin{letter}
{
Kathleen Kelly,\\
The Shop Around The Corner,\\
Small Corner, NYC.
}
% Opening statement
\opening{Dear Kathleen,}
% Letter body
I am aware that you are pretty miffed at me for being the cause of the demise of your bookstore. You have to believe in me, that was not my intention at all.
I hope we can talk about this over coffee. How about we meet this Friday evening at the corner cafe? Let me know.
% Closing statement
\closing{Yours truly,}
\end{letter}
\end{document}
%-----------------------------------------------------------------------------%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment