so I have multiple graphics in my Latex document, and have wrapped them in figure enviornments for easy positioning. How can I have one of my figures not count towards the overall figure counter in this chapter? So I have figure A, it contains three subcaptions. I give them each a \subcaption* (so the one without the label), and then I have figure B and want to give it a caption, and want it to be called Figure 1.1 (instead of Figure 1.2)
Here is an example of what I mean:
\documentclass{report}
\usepackage{tikz}
\usepackage{caption, subcaption}
\begin{document}
\section{A Section}
This is Figure A
\begin{figure}[h] % Figure A (should be excluded from the count)
\centering
\begin{subfigure}{.3\textwidth}\centering\begin{tikzpicture}
\draw (0,0) rectangle (1,1);
\end{tikzpicture}\subcaption*{(i)}
\end{subfigure}%
\begin{subfigure}{.3\textwidth}\centering\begin{tikzpicture}
\draw (0,0) rectangle (1,1);
\end{tikzpicture}\subcaption*{(ii)}
\end{subfigure}%
\begin{subfigure}{.3\textwidth}\centering\begin{tikzpicture}
\draw (0,0) rectangle (1,1);
\end{tikzpicture}\subcaption*{(iii)}
\end{subfigure}
\end{figure} \par\noindent
This is Figure B:
\begin{figure}[h]\centering\begin{tikzpicture} % Figure B (should be included into the count and here be % Fig. 1.1.
\draw (0,0) circle (20pt);
\end{tikzpicture}\caption{B}\end{figure}
\end{document}
Here is the output:


figure*? – Sigur Apr 08 '20 at 14:32figure*has nothing to do with numbering. That is a whole width float in atwocolumndocument. – cgnieder Apr 08 '20 at 15:20\addtocounter{figure}{-1}to your first figure. – cgnieder Apr 08 '20 at 15:23