答案1
您可以在序言中添加以下几行,将图形信息保存在与表格相同的位置,从而同时输出:
\makeatletter
\def\ext@figure{lot}
\makeatother
\renewcommand*\listtablename{List of Figures and Tables}
这是一个最小的工作示例:
\documentclass{article}
\makeatletter
\def\ext@figure{lot}
\makeatother
\renewcommand*\listtablename{List of Figures and Tables}
\begin{document}
\listoftables
\clearpage
\begin{figure}
\caption{A picture}
\end{figure}
\begin{table}
\caption{Numbers}
\end{table}
\begin{figure}
\caption{Another picture}
\end{figure}
\end{document}
输出
如果您希望该列表与示例中的完全相同,请加载tocloft
包并在序言中添加以下几行
\renewcommand{\cftfigpresnum}{Figure~}
\renewcommand{\cftfigaftersnum}{:}
\setlength{\cftfignumwidth}{5.5em}
\renewcommand{\cfttabpresnum}{Table~}
\renewcommand{\cfttabaftersnum}{:}
\setlength{\cfttabnumwidth}{5.5em}
平均能量损失
\documentclass{article}
\usepackage{tocloft}
\makeatletter
\def\ext@figure{lot}
\makeatother
\renewcommand*\listtablename{List of Figures and Tables}
\renewcommand{\cftfigpresnum}{Figure~}
\renewcommand{\cftfigaftersnum}{:}
\setlength{\cftfignumwidth}{5.5em}
\renewcommand{\cfttabpresnum}{Table~}
\renewcommand{\cfttabaftersnum}{:}
\setlength{\cfttabnumwidth}{5.5em}
\begin{document}
\listoftables
\clearpage
\begin{figure}
\caption{A picture}
\end{figure}
\begin{table}
\caption{Numbers}
\end{table}
\begin{figure}
\caption{Another picture}
\end{figure}
\end{document}
输出