为什么以下 arxiv 论文中常量的下标太大?
http://arxiv.org/pdf/1502.00822v1.pdf
这只发生在 arxiv 上,在我在家或工作时编译文档时不会发生。
以定理 1.1 为例。在句子“存在正常数 $C_1$”等中,下标大小正确,但在定理陈述末尾的不等式中,下标太大。
我们使用下面的宏来自动编号常量:
\documentclass{article}
\newcounter{constant}
\newcommand{\newC}[1]{%
\refstepcounter{constant} C_{\theconstant} \label{C:#1}%
}
\newcommand{\refC}[1]{C_{\ref{C:#1}}}
\begin{document}
New constant: \( \newC{test} \)
Reuse the constant: \( \refC{test} \)
\end{document}
每当我们使用 \refC 宏时,似乎都会出现下标大小不正确的情况,但使用 \newC 时不会出现这种情况。这与在下标中使用 \ref 有关吗?
答案1
感谢 TonioElGringo 的评论。这似乎是由于 arxiv 上的 hyperref 配置造成的。无论如何,我不需要下标是超链接,因此我可以通过使用 \ref* 而不是 \ref 来避免这种情况。