views:

415

answers:

2

If you have a traditional letter with content like-so.

From Someone
50 Example Drive
Random City, ZIP
Country
Tel: 444-555-6666

July 30, 2009

To Somebody
51 Example Drive
Random City, ZIP
Country
Tel: 444-555-7777


Dear Somebody:

Get off my lawn!

Sincerely yours,


Someone

How can one create such a letter using the LaTeX Memoir class.

In other words, using the Letter class the canon is:

\documentclass{letter}

    \signature{Your name}
    \address{Street \\ City \\ Country}
    \begin{document}

        \begin{letter}{Company name \\ Street\\ City\\ Country}
        \opening{Dear Sir or Madam:}

        \dots

        \closing{Yours Faithfully,}
        \ps{P.S. Here goes your ps.}
        \encl{Enclosures.}

    \end{letter}

\end{document}

How would one achieve similar or the same formatting using the Memoir class?

Thank you & cheers.

+1  A: 

Probably not the answer you are seeking, but the Memoir manual is great-- I would consult it first.

Mica
I've read the excellent manual through, but there's no clear answer. I'd hoped that someone had already done the work ... :)
Brian M. Hunt
why not just use the letter class?
Mica
@mica: the letter class has broken section headings (i.e. you end up with orphans). The memoir class does not suffer from that issue.
Brian M. Hunt
@Brian: the letter class probably doesn't have a section heading... because its a letter... see http://en.wikibooks.org/wiki/LaTeX/Letters
Mica
@Mica: That's a problem, too, then. :o)
Brian M. Hunt
you could always "fake" a section... set a counter for a new deceleration, give it some styling, etc.
Mica