0

I used a template from overleaf, I can not figure out which setting made this problem happen, so here is is the document. And the problem is in the file:

Chapters/Chapter1.tex

on line 30:

\caption{Related work \label{table:related_work}} \\

enter image description here

I tried:

\setcounter{table}{0}

But it doesn't seem to make any difference.

Mzq
  • 259
  • 6
    The first 1 is the chapter number. Adding renewcommand{\thetable}\arabic{table} to your preamble should do the trick. – Bernard Jan 04 '18 at 12:39

1 Answers1

1

After reading the referenced question (that has already been asked and answered), I end up doing this:

\usepackage{chngcntr}
\counterwithout{figure}{chapter}% Continuous numbering of figures
\counterwithout{table}{chapter}% Continuous numbering of tables

Old solution (not as good as above, agreed with the comment):

Thanks to Bernard, adding the following line:

\renewcommand{\thetable}{\arabic{table}}

to file

main.tex

line 66 did the trick.

Mzq
  • 259