删除 \documentclass{letter} 末尾的空白页

删除 \documentclass{letter} 末尾的空白页

当尝试使用信件文档类创建信件时,我在文档末尾得到了一个不需要的空白页。它看起来可能来自 \begin{letter}{} 宏,因为第一个参数打印在最后一页上,但如果我删除此参数,我仍然会得到一个空白页打印机。下面是一个相当多的模板,主要取自提供的信件示例模板。我找到了一个更好的模板,我正在使用,但知道这个模板是怎么回事还是不错的。谢谢。

\documentclass[a4paper,10pt]{letter}

% Some of the article customisations are relevant for this class
\name{} % To be used for the return address on the envelope
\signature{My Name} % Goes after the closing (ie at the end of the letter, with space for a signature)
\address{Address of Sender}
% Alternatively, these may be set on an individual basis within each letter environment.

\makelabels % this command prints envelope labels on the final page of the document

\begin{document}
\begin{letter}{Name and Address of receiver}

\opening{Dear Sir} % eg Hello.

\closing{Sincerely,} % eg Regards,

\cc{} % people this letter is cc-ed to
\encl{} % list of anything enclosed
\ps{} % any post scriptums. ``PS'' labels must be put in manually

\end{letter}
\end{document}

答案1

拨打电话\makelabels,它会在信件末尾打印信封标签。

相关内容