Gosto de digitar uma letra em látex com De e Para, um após o outro, seguido de sub e corpo da carta. não é possível definir De e Para na página. Sugira-me como colocá-lo, devo usar uma mini caixa.
Responder1
Verifique se isso é útil:
\documentclass{letter}
\pagestyle{empty}%%In case the page numbers are not necessary
\begin{document}
From\\
abcd\\
cdefg\\
hijkl\\
\vskip 12pt
To\\
xyz\\
12345\\
LKJH\\
\vskip 24pt
Sub: Here goes my subject\\
\vskip 24pt
Dear xyz,\\
Some text here Some text here Some text here
Some text here Some text here Some text here
Some text here Some text here Some text here
Some text here Some text here Some text here
\flushright{Sincerely,}
\flushright{abcd}
\end{document}
Outro com ambiente pré-definido:
\documentclass{letter}
\pagestyle{empty}%%In case the page numbers are not necessary
\begin{document}
\address{Street \\ City \\ Country}
\begin{letter}{Company name \\ Street\\ City\\ Country}
\opening{Dear abc}
\dots
\closing{Yours Sincerely,}
\ps{P.S. Here goes ps.}
\encl{Enclosures}
\end{letter}
\end{document}