我正在使用letter
documentclass 写一封求职信,并想使用该encl
行。我有以下测试用例:
\documentclass{letter}
\signature{First Last}
\address{Source address}
\begin{document}
\begin{letter}{Destination address}
\opening{To Whom it May Concern:}
This is the body of the letter.
\closing{Sincerely,}
\encl{Important document}
\end{letter}
\end{document}
其结果如下:
我想调整最后一行的格式,encl: Important document
可能改为斜体。我如何控制该行(包括encl:
组件)的排版?
答案1
名称(即您在输出中\encl
看到的名称)在 内设置。您可以使用类似以下内容更改其格式\encl
\enclname
\renewcommand{\enclname}{\itshape encl}
在你的序言中,连同
\encl{\itshape Important document}
在您的文档代码中:
\documentclass{letter}
\signature{First Last}
\address{Source address}
\renewcommand{\enclname}{\itshape encl}
\begin{document}
\begin{letter}{Destination address}
\opening{To Whom it May Concern:}
This is the body of the letter.
\closing{Sincerely,}
\encl{\itshape Important document}
\end{letter}
\end{document}
然而,真的没有必要letter
班级,因为您可以使用 实现相同的输出article
,并且它提供了类似的输出:
\documentclass{article}
\pagestyle{empty}
\setlength{\parindent}{0pt}
\begin{document}
\vspace*{50pt}% Leave some space from the top of the document
\hfill
\begin{tabular}{l @{}}
Source addres \\
\\
\today
\end{tabular}
\bigskip
Destination address
\bigskip
To Whom it May Concern:
\medskip
This is the body of the letter.
\bigskip
\hspace{.5\linewidth}%
\begin{tabular}{ l }
Sincerely, \\
\\[2\bigskipamount]
First Last
\end{tabular}
\bigskip
{\itshape encl: Important document}
\end{document}
通过这种article
方法,您可以自由更改内容格式。