需要一個字母的乳膠模板,格式為“從”到“到”一個接一個,然後是字母正文

需要一個字母的乳膠模板,格式為“從”到“到”一個接一個,然後是字母正文

我喜歡在乳膠中依序輸入“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}

在此輸入影像描述

相關內容