如何在乳胶中引用方程式并在文本中换行引用?
How to reference an equation in latex and line wrap the reference in the text?
我在对齐环境中的乳胶文档中得到了一个等式。我标记了我的方程式,并在我的文档中引用了这个方程式。
不过,那我是这样做的:
\begin{align} \label{eq:slopeSaturation}
<some formula>
\end{align}
<some text> \ref{eq:slopeSaturation} <some more text>
我发现文本中正确引用了方程式,但引用与文档的页边空白重叠。
我已经尝试在序言中使用以下属性:
\usepackage[breaklinks=true]{hyperref}
\usepackage{breakcites}
但这对我引用的方程式没有影响。
你知道我的问题吗?
您可以尝试使用
\eqref{eq:slopeSaturation}
或
\autoref{eq:slopeSaturation}
这将创建特别适合方程式的引用(或任何真正用于自动引用的内容...)
我在对齐环境中的乳胶文档中得到了一个等式。我标记了我的方程式,并在我的文档中引用了这个方程式。
不过,那我是这样做的:
\begin{align} \label{eq:slopeSaturation}
<some formula>
\end{align}
<some text> \ref{eq:slopeSaturation} <some more text>
我发现文本中正确引用了方程式,但引用与文档的页边空白重叠。
我已经尝试在序言中使用以下属性:
\usepackage[breaklinks=true]{hyperref}
\usepackage{breakcites}
但这对我引用的方程式没有影响。
你知道我的问题吗?
您可以尝试使用
\eqref{eq:slopeSaturation}
或
\autoref{eq:slopeSaturation}
这将创建特别适合方程式的引用(或任何真正用于自动引用的内容...)