似乎默认情况下该类scrlttr2
不支持分段,即命令\section
或\paragraph
返回错误。
如何为后者添加分段支持scrlttr2
?
答案1
一个解决方案暗示在这个答案。特别是,下载文件部分slco.zip并将其解压到包含该字母的目录中。最后,添加类选项。现在您可以像往常一样sections
使用所有分段宏,例如。\section
答案2
我建议使用Koma-Scriptscrartcl
附带的软件包中的文档scrletter
。它允许您将letter
环境放入任何文档中,从而有效地启用部分里面和后你的主要信件。
例子:
\documentclass{scrartcl}
\usepackage{scrletter} % You can put most scrlttr2 options here.
\usepackage{lipsum}
\begin{document}
\date{\today}
\setkomavar{fromname}{My Name}
\setkomavar{fromaddress}{My address\\My City}
\setkomavar{fromphone}{Phone Number}
\setkomavar{fromemail}{[email protected]}
\setkomavar{place}{City}
\setkomavar{signature}{My name again}
\setkomavar{subject}{Hello World}
\begin{letter}[fontsize=14pt]{%
To:\\ You
}
\opening{Hello there!}
Hello dear world.
\section{Oh wow!}
This is another section.
\closing{CU later}
\ps{PS: Forgot anything?}
\encl{A bottle of beer}
\end{letter}
\tableofcontents % Even hyperrefs into the main letter work.
\section{Another section}
With content.
\end{document}