Abbreviation longtable affecting table numbers over whole thesis
Currently, in the masters thesis the figures/tables are numbered per chapter for example 1.1,
1.2..., 2.1, 2.2 ...
I am trying to get them to number by type continuously.
I have added the following to my preamble
Code: Select all
\captionsetup{figurewithin=none}
\captionsetup{tablewithin=none}
have also tried the following with the same effect.
Code: Select all
\usepackage{chngcntr}
\counterwithout{figure}{chapter}
\counterwithout{table}{chapter}
gman