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.

link|improve this question

feedback

2 Answers

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

link|improve this answer
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 Jul 15 '09 at 15:53
why not just use the letter class? – Mica Jul 15 '09 at 16:23
1  
@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 Sep 8 '09 at 15:11
@Brian: the letter class probably doesn't have a section heading... because its a letter... see en.wikibooks.org/wiki/LaTeX/Letters – Mica Sep 8 '09 at 16:14
@Mica: That's a problem, too, then. :o) – Brian M. Hunt Sep 8 '09 at 19:01
show 1 more comment
feedback

It doesn't appear that Memoir is set up for a letter class out of the box. You might want to consider using scrlttr2 in the KOMA-Script package. Here is an example of its use.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.