Skip to content

Instantly share code, notes, and snippets.

@enockseth
Forked from ashwin/latex-letter.tex
Created February 28, 2019 12:23
Show Gist options
  • Select an option

  • Save enockseth/ed08f57966e7bab43a27d33a5525b6c5 to your computer and use it in GitHub Desktop.

Select an option

Save enockseth/ed08f57966e7bab43a27d33a5525b6c5 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