I would like the figures in this document to simply be numbered as "Figure 1", "Figure 2" etc. Right now, they are numbered as "Figure 0.1", "Figure 0.2" etc, which I assume has got something to do with the fact that this document does not contain chapters. However, I can't find the setting within my template that defines the numbering.
How do I change the figure numbers?
\RequirePackage{fix-cm}
\documentclass[%
twoside, openright, titlepage, numbers=noenddot,%
cleardoublepage=empty,%
abstractoff,%
BCOR=5.5mm, paper=a5, fontsize=10pt,% A5 soft cover
]{scrreprt}
\usepackage{etex}
\reserveinserts{10}
\usepackage[final]{pdfpages}
\begin{document}
\frenchspacing
\raggedbottom%
\begin{figure}[t]
\centering
\resizebox{0.4\linewidth}{!}{%
\input{test.tex}
}
\caption{\textbf{Title}. Content.}
\end{figure}
\begin{figure}[t]
\centering
\resizebox{0.4\linewidth}{!}{%
\input{test.tex}
}
\caption{\textbf{Title}. Content.}
\end{figure}
\end{document}


scrreprt? IMHO usingscrartclwould make more sense. – cabohah May 18 '23 at 16:37\usepackage{etex}it is kept availble for legacy reasons but it breaks much current code and does nothing useful in any latex released after 2015 – David Carlisle May 18 '23 at 18:31