我正在尝试用1、2、3等编号我的数字。但是,即使我使用了\counterwithout{figure}{section}
,LaTeX只会用段号(例如1.1、1.2等)对它们进行编号。没有错误信息。可能是什么问题?
\usepackage{chngcntr}
\counterwithout{figure}{section}
\usepackage[pdfborder={0 0 0}]{hyperref}
\begin{document}
\input{chapter/01_introduction}
%the figure is in a subsection as part of the introduction
\end{document}
01_introduction
文件的外观如下:
% !TEX root = ../root.tex
\section{Introduction}
\subsectiction{Title of the subsection}
\begin{figure}[htbp]
\begin{center}
\includegraphics[width=\textwidth]{chapter/figures/fig_bsp.png}
\captionof{figure}{caption of the figure}
\label{fig:1}
\end{center}
\end{figure}
答案 0 :(得分:1)
在做最小的工作示例时,我发现了自己的错误:我使用了一个包含以下内容的模板:'\ renewcommand {\ thefigure} {\ thesection。\ arabic {figure}}',这使我的计算结果不符合1、2的要求。 3.谢谢您的帮助!