LaTeX 或 Texmaker 是否存在错误,导致它们第一次没有显示参考?

LaTeX 或 Texmaker 是否存在错误,导致它们第一次没有显示参考?

我想输入一个方程式,在上面加上标签 D,然后引用它。我试过:

\begin{equation*}
\label{D}
w''+e^{-z}\cdot w'+\alpha \cdot w=0
\end{equation*}
with $\alpha\in\mathbb{C}$ and showed that precisely when a solution to~\ref{D}

但当 Texmaker 编译文档时,行的末尾是

并表明,当解

然后我把代码改成

\begin{equation*}
\label{D}
\tag{D}
w''+e^{-z}\cdot w'+\alpha \cdot w=0
\end{equation*}
with $\alpha\in\mathbb{C}$ and showed that precisely when a solution to~\ref{D}

但仍然缺少 D。之后,我尝试删除 \tag{D} 行以重新编译代码的第一个版本。现在我能够看到正确的输出:

并表明当 D 的解成立时。

那么,这是 LaTeX 或 TexMaker 中的一个错误,因为我第一次无法看到字母 D?

我有 Ubuntu 17.04 和

This is pdfTeX, Version 3.14159265-2.6-1.40.17 (TeX Live 2016/Debian) (preloaded format=pdflatex 2017.8.16) 15 SEP 2017 09:29

Texmaker 4.5
(compiled with Qt 5.6.1 and Poppler 0.44.0)
Copyright (c) 2003-2015 by Pascal Brachet

答案1

解决方案是从方程环境中移除 *。因此

\begin{equation}
\label{D}
\tag{D}
w''+e^{-z}\cdot w'+\alpha \cdot w=0
\end{equation}

效果很好。

相关内容