On 6/28/19 3:51 PM, Rich Shepard wrote:
MEW attached.
The full document has several tables in several chapters, yet the List of
Tables displays only the table number within each chapter rather than
chapter_number-table_number. The attached page shows this; the mwe
compiles
with pdflatex to show the table as 1 rather than 1.1.
I've not had this happen in previous docs and would like to learn why it
happens and how to prevent it from occurring again.
TIA,
Rich
You'll note it's not just the list of tables that's at fault; in the
table float, the captions starts "Table 1:" rather than "Table 1.1:".
Try changing \renewcommand{\thetable}{\arabic{table}} in the preamble to
\renewcommand{\thetable}{\arabic{table}} to
\renewcommand{\thetable}{\arabic{chapter}.\arabic{table}}. (I'm not sure
why you need to specify arabic here, but I'm going with the flow.)
Paul