私はLaTeXでFromとToを順に入力し、その後にsubと本文を続けて入力するのが好きです。ページにFromとToを設定できません。配置方法を教えてください。ミニボックスを使用する必要がありますか。
答え1
これが役に立つかどうか確認してください:
\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}
環境が事前に定義された別の例:
\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}