我使用的是 Lyx、Book(Koma-Script) 文档类。一切似乎都运行正常,只是我花了很长时间试图将目录中单个附录的名称从“附录 A. Blah blah”更改为“附录。Blah blah”。我还希望文档正文中的附录标题为“附录。Blah blah”,而不是“A. Blah blah”。我在附录开头插入了以下 TEX 代码
\begin{appendices}
\renewcommand{\appendixname}{Appendix}
\chapter{Planetary motion data}
\end{appendices}
在附录末尾加上。在文档设置/Latex 序言中,我输入了。\usepackage[title,titletoc]{appendix}
我对编码等知识一无所知。我只是反复试验,复制/粘贴我在网上找到的代码片段,才到达现在的位置。有人能帮忙吗?谢谢。
答案1
我将利用以下事实:后面的章节\backmatter
没有编号:
\documentclass{scrbook}
\begin{document}
\frontmatter
\tableofcontents
\mainmatter
\chapter{A title}
% <body of document>
\backmatter
\chapter{Appendix. Planetary motion data}
% <text of appendix>
\end{document}
答案2
如果您只想要您所描述的内容,那么您可以简单地使用未编号的章节\chapter*
或\frontmatter
- \mainmatter
-\backmatter
命令scrbook
,或者您可以重新定义章节编号:
\documentclass{scrbook}
\usepackage[title,titletoc]{appendix}
\begin{document}
\begin{appendices}
% \renewcommand{\appendixname}{Appendix}
\renewcommand{\thechapter}{Appendix.}
\chapter{Planetary motion data}
\end{appendices}
\end{document}
我对 LyX 不太了解,所以我根据您提供的其他信息编造了这个 MWE。
我也不知道这个appendix
包,但这个名字暗示了一些已经提供的功能scrbook
。所以也许你应该检查一下KOMA-Script 文档有关如何利用文档类的更多信息。