Theses, Books, Title pagesAbbreviation longtable affecting table numbers over whole th

Classicthesis, Bachelor and Master thesis, PhD, Doctoral degree
Post Reply
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

Abbreviation longtable affecting table numbers over whole th

Post by templateuser »

Hi Vel,
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}
unfortunately it counts the abbreviation page as a table so the first table in my main text shows up as Table 2 in the list of tables and in the text.

have also tried the following with the same effect.

Code: Select all

\usepackage{chngcntr}
\counterwithout{figure}{chapter}
\counterwithout{table}{chapter}
Thanks

gman

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

Abbreviation longtable affecting table numbers over whole th

Post by templateuser »

Solved this. Instead of putting the following in the preamble:

Code: Select all

\usepackage{chngcntr}
\counterwithout{figure}{chapter}
\counterwithout{table}{chapter}
I only put \usepackage{chngcntr} in the preamble and added

Code: Select all

\counterwithout{figure}{chapter}
\counterwithout{table}{chapter}
to the chapter file.

gman
Post Reply