附錄中的 \listoftables

附錄中的 \listoftables

我正在使用包含表格列表的附錄頁面。如果我使用\listoftables,它不會顯示附錄中的任何表格。有什麼想法嗎?


\input{chapter01_introduction}
\input{chapter02_models}
\input{chapter03_results}
\input{chapter04_discussion}
\input{chapter05_conclusions}
\addcontentsline{toc}{section}{References}
\printbibliography
\newpage
\input{appendices}
\section*{Acronyms}
\input{acro_list}
\newpage
\listoftables
\end{document}

答案1

您的程式碼範例並未顯示您已經在如何做事情,但這裡有一個附錄中的表格,後面是表格清單。這是您想要的行為嗎?

需要注意的是,我認為您不能擁有多個表列表。如果您在文件的其他地方使用 \listoftables,則附錄中的表格清單將為空。

\documentclass[10pt]{report}

\usepackage[titletoc]{appendix}

\begin{document}

\chapter{Main}

\begin{appendices}

\chapter{Dummy}
\label{ch:dummy}

\begin{table}[ht]
\caption{This is a caption}
\label{table:table_lbl}
\center
\begin{tabular}{ |c|c|c| } 
 \hline
 cell1 & cell2 & cell3 \\ 
 cell4 & cell5 & cell6 \\ 
 cell7 & cell8 & cell9 \\ 
 \hline
\end{tabular}
\end{table}

\listoftables

\end{appendices}

\end{document}

相關內容