我想将公式链接到文档末尾的句子(例如下面的代码),但将超链接放在公式编号上而不是公式本身上?可以吗?谢谢您的帮助。
\begin{equation}
\hyperlink {label1} {
uWiT = min( TDec_{y-1} , TJan_{y} , TFeb_{y} )}
\end{equation}
...
...
\hypertarget{label1}{Equation minimum temperature}
答案1
一种方法是将超链接插入到公式编号本身,这需要对公式编号的打印方式进行一些重新定义,除了底层超链接外,基本上没有任何改变
\documentclass[12pt]{article}
\usepackage{amsmath}
\usepackage{hyperref}
\begin{document}
\begin{equation}
\let\OriginalEquation\theequation%
\renewcommand{\theequation}{\hyperlink{label1}{\OriginalEquation}}%
uWiT = min( TDec_{y-1} , TJan_{y} , TFeb_{y})
\end{equation}
\newpage % for 'end of document' page
\hypertarget{label1}{Equation minimum temperature}
\end{document}