使用标题包对每章的表格和图片进行编号

使用标题包对每章的表格和图片进行编号

我将几篇论文放在一个报告类中作为单独的章节。每篇论文中的所有图表和表格都需要以数字 1 开头,而无需说明它们位于哪一章/论文中(例如,第 1 章、第 2 章等中有图 1)。为了控制章节/章节内的编号,我查看了这个问题:连续编号,即按章节/节对图表、表格和其他文档元素进行编号

这是我找到带有 figurewithin 和 tablewithin 的标题解决方案的地方。

当我使用以下 MVE 时,我得到的是图 .1 - 图号前总是有一个点,我猜想章节号应该在那里。但是,我需要的只是图 1,而不是图 .1:

\documentclass[a4paper, 11pt, english]{report}
\usepackage[T1]{fontenc}
\usepackage[figurewithin=chapter, tablewithin=chapter]{caption}

\begin{document}
\include{Paper1}
\end{document}

Paper1.tex 如下所示:

\chapter{Paper I Title}
\section{Introduction}
\begin{table}[htb]
\centering
\begin{tabular}{@{}p{12cm}p{4cm}@{}}
\toprule
BFL                                                                         \\ \midrule
\textit{IC:} Text. \\
\textit{I:} Text.                \\
\\ \bottomrule
\end{tabular}
\caption{Caption title}
\end{table}

相关内容