Hyperref
通常会在链接周围添加彩色边框。但是,如果我插入Asymptote
包,边框消失(即使链接仍然存在)。查看渐近线手动的(第 172 页)在我看来,通过变量hyperrefOptions
可以改变这种行为,但我不明白从实际角度来看究竟如何进行。我声明我不是 Asymptote 包的专家,但文档对我来说似乎有点晦涩难懂。那么,我该如何修改我的代码/设置以使框可见(如图所示)?
这是我的最小代码:
\documentclass{book}
\usepackage{xcolor}
\usepackage{hyperref}
\hypersetup{allbordercolors=blue}
\usepackage{asymptote}
\begin{document}
Hello\footnote{Hello again}
\begin{asy}[width=6cm,height=6cm]
import three;
surface cube1 = scale3(1.6)*shift((-0.5,-0.5,-0.5))*unitcube;
draw(cube1,red);
\end{asy}
\end{document}