我目前正在写我的学士论文,遇到了一个小问题。我使用文档类scrreprt
,但没有枚举章节(\chapter*
),无法更改表格的标题。他们总是说Table 0.1
而不是Table 1
。我尝试使用该caption
包,但没有找到解决问题的方法。
我感觉我缺少了一个简单的解决方案。有人能帮助我吗?
提前致谢!
答案1
删除编号样式的最简单方法是在加载包后chapter.table
使用。\counterwithout{table}{chapter}
chngcntr
\documentclass{scrreprt}
\usepackage{chngcntr}
\begin{document}
\chapter*{Foo starred}
\begin{table}
\caption{Foo table}
\end{table}
\counterwithout{table}{chapter}
\begin{table}
\caption{Foo table with no double numbering}
\end{table}
\end{document}