使用 scrbook 和附录包时,我在章节和节号后看到点。如果将下面的最小示例与 pdflatex 结合,则第一页看起来符合要求,并创建了 .aux 文件。
如果它与现有的 .aux 文件第二次合并,它看起来像这样:
带有额外的点。如果我注释掉下面标记的行,则不会出现此问题。
\documentclass{scrbook}
\usepackage{appendix}
\begin{document}
\chapter{Chapter}
\section{Section}
\begin{appendices}
\chapter{Appendix Chapter} % comment out this line to compile without dot after chapter and section numbers
\section{Appendix Section}
\end{appendices}
\end{document}
答案1
它基于一条德国规则:如果编号中出现罗马数字或字母,则编号末尾应该出现一个点。
如果添加附录,章节编号将以字母 重新开始A
。如果默认的 KOMA-Script 选项numbers=auto
处于活动状态,则在下一次运行中将添加所有数字(章节、部分、图表等)末尾的点。要避免此行为,请将选项的值更改numbers
为noenddot
:
\documentclass[
numbers=noenddot% <- added; default value is auto
]{scrbook}
\usepackage{appendix}
\begin{document}
\chapter{Chapter}
\section{Section}
\begin{appendices}
\chapter{Appendix Chapter}
\section{Appendix Section}
\end{appendices}
\end{document}