我正在使用包含表格列表的附录页面。如果我使用\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}