我想使用连续数字编号,所以我使用了本网站的一个技巧https://texfaq.org/FAQ-running-nos。
\documentclass[a4paper, 11pt]{scrbook}
\usepackage{chngcntr}
\counterwithout{figure}{chapter}
...
\begin{appendix}
\chapter{Algorithms}
...
\end{appendix}
它有点起作用:数字看起来像这样Figure 2.:
,例如Figure 3.:
......我怎样才能摆脱.
?
有没有修复或者更好的解决方案?
答案1
只是猜测:你使用KOMA 脚本类scrbook
或scrreprt
和您的文档是否包含附录章节?如果是,则会自动将结束点添加到章节标题和浮动标题的编号中。要删除该点,请将其添加\KOMAoptions{numbers=noendperiod}
到您的序言中。
\documentclass{scrreprt}
% \KOMAoptions{numbers=noendperiod}
\usepackage{chngcntr}
\counterwithout{figure}{chapter}
\begin{document}
\chapter{foo}
\begin{figure}
\centering
\rule{1cm}{1cm}
\caption{A figure}
\end{figure}
\appendix
\chapter{bar}
\end{document}