参考一系列数字

参考一系列数字

当我运行添加文件时,我得到:

第 1 章

1.1 秒

图 1.1 - 1.1。仅 a 图 1.1 仅 b 图 1.1

显然这是错误的,但它发生了吗?

\documentclass{report}

%\usepackage{amsmath}
%\usepackage{mathrsfs}
\usepackage{graphicx}
\begin{document}
\chapter{chap}
\section{sec}
figures \ref{a} - \ref{c}.

Just a figure \ref{a}
Just b figure \ref{b}

\begin{figure}
  \includegraphics[width=0.8\textwidth]{mem0per.png}
  \caption{A figure}
  \label{a}
\end{figure}

\begin{figure}
  \includegraphics[width=0.8\textwidth]{mem0per.png}
  \caption{B figure}
  \label{b}
\end{figure}

\begin{figure}
  \includegraphics[width=0.8\textwidth]{mem0per.png}
  \caption{C figure}
  \label{c}
\end{figure}

\end{document}

答案1

我按原样运行了您的示例,结果似乎是正确的:

在此处输入图片描述

更新:确实,正如 @egreg 所评论的,如果您在\label每个之前都有\caption,那么您就会得到您所看到的结果:

在此处输入图片描述

相关内容