我的附录中有两章 - 表格和图表(“附录 A 图表”和附录 B 表格”),我希望文档的目录显示每个章节中的条目。例如,“A.1 这是一些图表”。我不知道该怎么做。目前目录中只列出了附录 A 和 B。
\documentclass[12pt,twoside,a4paper]{book}
\usepackage[titletoc,page]{appendix}
\usepackage{caption}
\begin{document}
\tableofcontents
\begin{appendices}
\captionsetup[table]{list=no}
\renewcommand{\thesection}{\thechapter.\arabic{section}}
\renewcommand{\thesubsection}{\thesection.\arabic{subsection}}
\renewcommand{\thesubsubsection}{\thesubsection.\arabic{subsubsection}}
\chapter{Tables \label{app:figures}}
\begin{table}
\caption{Test table one}
\end{table}
\begin{table}
\caption{Test table one}
\end{table}
\end{appendices}
\end{document}
答案1
您可以通过告诉 LaTeX 对列表使用相同的扩展名来合并表格列表和目录。
\documentclass[12pt,twoside,a4paper]{book}
\usepackage[titletoc,page]{appendix}
\usepackage{caption}
\makeatletter
\def\ext@figure{toc}
\def\ext@table{toc}
\makeatother
\begin{document}
\tableofcontents
\begin{appendices}
%\captionsetup[table]{list=no}
\renewcommand{\thesection}{\thechapter.\arabic{section}}
\renewcommand{\thesubsection}{\thesection.\arabic{subsection}}
\renewcommand{\thesubsubsection}{\thesubsection.\arabic{subsubsection}}
\chapter{Tables \label{app:figures}}
\begin{table}
\caption{Test table one}
\end{table}
\begin{table}
\caption{Test table two}
\end{table}
\end{appendices}
\end{document}