Me gusta escribir una letra en látex con Desde y Hasta uno tras otro y luego seguido por sub y luego cuerpo de letra. No se puede configurar Desde y Hasta en la página. Sugiérame cómo ponerlo. ¿Puedo usar mini box?
Respuesta1
Comprueba si esto es ú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}
Otro con un entorno predefinido:
\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}