im writing a document using the document class "book", and I am having trouble with naming the Tables in appendices for each chapter.
I begin my appendix with\section, and these are my current codes:
Code: Select all
\begin{subappendices}
\setcounter{table}{0}
\renewcommand{\thetable}{\Alph{section}\arabic{table}}
\input{Appendices/AppendixC2}
\end{subappendices}
What im looking for is, for example, Table A1, A2 for Chapter 1. Table B1, B2 for Chapter 2 and so on. I managed to achieve this using
Code: Select all
\renewcommand{\thetable}{\Alph{chapter}\arabic{table}}
However, I do not want to treat my appendices as chapters; I want to treat them as sections.
Would you please help me with these without changing appendices as chapters?
Thank you xoxo.