重命名图形名称以用户指定的数字开头

重命名图形名称以用户指定的数字开头

我有一份海报文档,里面有几张图,我想从特定数字开始为它们添加标题(例如:图 8、图 9……等等)。但它似乎采用默认值并从 1 开始编号。

我甚至尝试过

\renewcommand{\figurename}{Fig.}

但它不能解决我的问题。LaTex (Overleaf) 中是否有任何方法可以自动化或自定义此操作?

海报图片

答案1

只是为了在@Zarko 的评论中添加 MWE:

\documentclass{article}
\usepackage{mwe}
\setcounter{figure}{8} %<---- If you want to start with number 'n', then put 'n-1' here.
\begin{document}
   \begin{figure}
      \includegraphics{example-image-a}
      \caption{Look at this brilliant figure!}
   \end{figure}
\end{document}

在此处输入图片描述

答案2

让我阐明一下我的评论:

\documentclass{article}
\usepackage{mwe}
\setcounter{figure}{5} %<--- figure starts with num, 6

\begin{document}
   \begin{figure}
   \centering
      \includegraphics{example-image-duck}
      \caption{Look at this brilliant figure of Mr. Duck!}
   \end{figure}
\end{document}

在此处输入图片描述

相关内容