Latex:在表格中自动添加图号和标题

Latex:在表格中自动添加图号和标题

我正在写论文,像在 word 中一样,我想在表格中自动添加图号、标题和页码(图列表),是否可以在 overleaf Latex 中执行此操作,还是我需要手动执行此操作

答案1

欢迎来到 TeX-SE。

请尝试以下 MWE,看看是否符合您的需求。下图所示。

\documentclass{article}
\usepackage{graphicx}
\begin{document}
\listoffigures
\begin{figure}[h]
    \centering
    \includegraphics[width=0.2\linewidth]{example-image-a}
    \caption{A}
\end{figure}
\begin{figure}[h]
    \centering
    \includegraphics[width=0.2\linewidth]{example-image-b}
    \caption{B}
\end{figure}
\begin{figure}[h]
    \includegraphics[width=0.2\linewidth]{example-image-c}
    \caption{C}
\end{figure}
\end{document}

在此处输入图片描述

相关内容