Created
January 2, 2013 06:31
-
-
Save ashwin/4432684 to your computer and use it in GitHub Desktop.
Revisions
-
ashwin created this gist
Jan 2, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,45 @@ %-----------------------------------------------------------------------------% % 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} %-----------------------------------------------------------------------------%