将“表格/图片列表”作为附录中的独立章节

将“表格/图片列表”作为附录中的独立章节

我想将“表格列表”和“图表列表”作为附录部分中的两个独立章节,如下所示:

Appendix A: List of Figures
Fig. 1 --------
Fig. 2 --------

Appendix B: List of Tables
Tab. 1 --------
Tab. 2 --------

我尝试了以下代码,但它没有按预期工作

\appendix 
\begingroup
\chapter{List of tables}
\listoftables
\cleardoublepage
\endgroup
%
\appendix 
\begingroup
\chapter{List of Figures}
\listoffigures
\cleardoublepage
\endgroup

答案1

这是我想出的最小示例。希望对您有所帮助。您正在寻找的是\addcontentsline{toc}{section}{List of XX}

\documentclass[a4paper,12pt]{article}

\usepackage{graphicx}       % for including graphics.
\usepackage{caption}        % For caption of Tables


\begin{document}
% Table of Contents
\tableofcontents        

\
\section{First Chapter}
It's me, Mario!

\begin{figure}
    \centering
    \includegraphics[width=\textwidth]{1.png}
    \caption{Some Figure}
    \label{fig:figure1}
\end{figure}

\captionof{table}{Some Table} 
\begin{center}
\begin{tabular}{c|c}
    1 & 2 \\
    3 & 4
\end{tabular}
\end{center}

\appendix
%% List of Figures
\addcontentsline{toc}{section}{List of Figures}
\listoffigures

\addcontentsline{toc}{section}{List of Tables}
\listoftables   

\end{document}

生成结果:

例子

\clearpage还可以在章节、目录、图表等之间插入空白页。

相关内容