Я пытаюсь, чтобы мои цифры были пронумерованы 1, 2, 3 и так далее. Но LaTeX нумерует их только номерами секций (например, 1.1, 1.2 и т. Д.), Хотя я использовал \counterwithout{figure}{section}
. Там нет сообщения об ошибке. В чем может быть проблема?
\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}