\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}

관련 정보