我有一个应用程序,通过添加和删除章节和部分,从各个章节和部分生成 PDF。因此,我发现示例编号和图像编号存在问题。例如,我在第 2 章中写道,Something is shown on example image (2.1)
并且有image 2.1
。但如果我删除chapter 1
,我的chapter 2
,就会变成chapter 1
,而我的图像编号是1.1
,而不是2.1
。我该如何正确设置我的示例编号?
谢谢。
答案1
\label{name} 将 \thefigure 与“name”一起存储在辅助文件中。更准确地说,它存储了 \refstepcounter 最后增加的计数器。 \ref{name} 检索此存储的文本,但需要第二次运行才能显示更改。
\documentclass{book}
\usepackage{mwe}
\begin{document}
\chapter{Start}
See Figure \ref{name}.
\begin{figure}[h]
\includegraphics{example-image}
\caption{test}\label{name}% must come after \caption
\end{figure}
\end{document}