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.

Brian M. Hunt
  • 71,376
  • 65
  • 208
  • 328

2 Answers2

1

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.

Michael Hoffman
  • 27,420
  • 6
  • 55
  • 80
0

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

Mica
  • 15,947
  • 4
  • 40
  • 41