My problem is that I have a template for my thesis . I was planning to add appendices to my work. The appendices are tables in a separate .tex file.
What I did is that.
I included the Package :
% Appendix
\usepackage[titletoc, title]{appendix}
at the end of the main.tex file I called the appendices as
\begin{appendices}
\chapter{Energy per job}
\include{ChaptersStructure/Tables/EnergyPerjob2}
\include{ChaptersStructure/Tables/Table_TotalEnergyAll}
\end{appendices}
unfortunately, the letter A or B did not show for tables or sections. the output of the appendices in the following picture:
Also, the TOC does not show the Letter A or B
Can I find any help with this issue?

