[Tex/LaTex] Numbering of tables and figures after appendix

appendices

I am submitting a revision of my paper and I have to put my tables and figures at the end of manuscript. The problem is that I have an appendix before my figures and table which cause the numbering to be assigned as the appendix format:
Figure A.1, Figure A.2,….

Does anyone has encountered the same situation before? Do you have any suggestions? Thanks.

Best Answer

As explained in this answer, you can add

\usepackage{chngcntr}

to the preamble of your document, and

\appendix
\counterwithin{figure}{section}
\counterwithin{table}{section}

before floats with new naming format.

Related Question