如何将一系列数字放入附件中

如何将一系列数字放入附件中

我想在附件中放置 51 个数字,名称为 0001.png,.....,直到 0051.png,我想知道我是否可以在乳胶中做类似的事情。

对于 i series_of_figures;将图放在附件中,并在标题中加上 name_of_figures(“0001.png”, .., “0051.png”)。

我希望您理解我的问题并感谢您的帮助。

答案1

在序言中

\usepackage{capt-of}% or {caption} if you need more features
\newcounter{myfig}\setcounter{myfig}{1000}
\newcommand\eatone[1]{\expandafter\xeatone\the\value{myfig}}
\newcommand\xeatone[1]{}

然后在文档中

\setcounter{myfig}{1000}
\loop
\stepcounter{myfig}
\par% or \begin{center} or whatever you need
\includegraphics{\eatone{myfig}
\captionof{figure}{image: \eatone{myfig}}
\par% or \end{center etc
\ifnum\value{myfig}<10052
\repeat

相关内容