Skip to content

Instantly share code, notes, and snippets.

@ashwin
Created January 2, 2013 06:31
Show Gist options
  • Select an option

  • Save ashwin/4432684 to your computer and use it in GitHub Desktop.

Select an option

Save ashwin/4432684 to your computer and use it in GitHub Desktop.

Revisions

  1. ashwin created this gist Jan 2, 2013.
    45 changes: 45 additions & 0 deletions latex-letter.tex
    Original 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}
    %-----------------------------------------------------------------------------%