付録の\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}

関連情報