2

我按照https://tex.stackexchange.com/questions/36109/making-tikz-nodes-hyperlinkable上的配方创建节点,这些节点是指向文档中其他位置的可点击链接。节点链接在使用 lualatex 构建时工作,但在使用 xelatex 构建时似乎根本不起作用——尽管它们确实按预期呈现到屏幕上(节点上的绿色覆盖是为了证明hyperlink node 正在被调用,它'会在我不调试时消失)。

我的 MWE:

\documentclass[10pt]{article}
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage[colorlinks,linkcolor=green!50!black]{hyperref}

\tikzset{
  hyperlink node/.style={
    alias=sourcenode,
    append after command={
      let \p1 = (sourcenode.north west),
          \p2=(sourcenode.south east),
          \n1={\x2-\x1},
          \n2={\y1-\y2} in
      node [draw=green!50!black,rounded corners,opacity=0.5,fill=green,inner sep=0pt,outer sep=0pt,anchor=north west,at=(\p1)] {\hyperlink{#1}{\phantom{\rule{\n1}{\n2}}}}
    }
  },
  mynode/.style={rectangle, rounded corners, fill=white,draw=black},
  edge/.style={>=Stealth},
}

\begin{document}

\begin{tikzpicture}

  \node [mynode] (a) {Not a link};
  \node [mynode,hyperlink node=LinkHere] (b) [right=30mm] {This is a link};

  \path (a) -> (b);

\end{tikzpicture}

In text, though:

Not a link.

\hyperlink{LinkHere}{This is a link} also

\clearpage

This page deliberately left blank.

\clearpage

\hypertarget{LinkHere}{}
Link lands here.
\end{document}

使用 xelatex 构建,单击绿色节点不会将我带到第三页,但单击文本链接(下面的绿色文本,“这是一个链接”)会。当我使用 lualatex 构建 PDF 时,这两个超链接都有效。

为什么这在 lualatex 中有效,但在 xelatex 中无效,我该怎么办?否则我喜欢从 xelatex 获得的输出(布局和字体渲染有点不同),但链接很重要。使用 xelatex 构建时,如何使超链接节点正常工作?

使用

  • XeTeX 3.1415926-2.5-0.9999.3-2013060708(TeX Live 2013)
  • LuaTeX,版本 beta-0.76.0-2013061708 (TeX Live 2013) (rev 4627)

简单调用:

$ xelatex mwe.tex; mv mwe.pdf mwe-xelatex.pdf
$ lualatex mwe.tex; mv mwe.pdf mwe-lualatex.pdf

我刚刚确定使用navigator.sty包而不是在使用and而不是andhyperref.sty时表现出相同的行为差异。\jumplink\anchor\hyperlink\hypertarget

4

1 回答 1

2

啊哈。

TL;DR:替换\hyperlink{#1}{\phantom{\rule{\n1}{\n2}}}}\hyperlink{#1}{\XeTeXLinkBox{\phantom{\rule{\n1}{\n2}}}}}

我在工作(文本)链接下方添加:

\hyperlink{LinkHere}{\rule{1in}{1in}}

这几乎就是我在超链接节点中所拥有的。该规则以绿色呈现,因为它是一个\hyperlink,但是当使用 xelatex 编译 PDF 时单击它没有任何作用。问题不在于 xelatex 和 TikZ,而在于 xelatex 和hyperref.sty. 根据https://tex.stackexchange.com/questions/56802/hyperlinking-a-drawing xelatex 仅在找到text时才链接。

\XeTeXLinkBox被添加到hyperref.sty专门处理这个问题。您仍然需要使用\phantom{}来隐藏规则。

比 MWE 做我想做的事稍微多一点,并展示了使用\XeTeXLinkBox和不使用它的区别。

\documentclass[10pt]{article}
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage[colorlinks,linkcolor=green!50!black]{hyperref}

\setlength{\XeTeXLinkMargin}{0pt}
\tikzset{
  hyperlink node/.style={
    alias=sourcenode,
    append after command={
      let \p1 = (sourcenode.north west),
          \p2=(sourcenode.south east),
          \n1={\x2-\x1},
          \n2={\y1-\y2} in
      node [draw=green!50!black,rounded corners,opacity=0.5,fill=green,inner sep=0pt,outer sep=0pt,anchor=north west,at=(\p1)] {\hyperlink{#1}{\XeTeXLinkBox{\phantom{\rule{\n1}{\n2}}}}}
    }
  },
  mynode/.style={rectangle, rounded corners, fill=white,draw=black},
  edge/.style={>=Stealth},
}

\begin{document}

\begin{tikzpicture}

  \node [mynode] (a) {Not a link};
  \node [mynode,hyperlink node=LinkHere] (b) [right=30mm] {This is a link};

  \path (a) -> (b);

\end{tikzpicture}

In text, though:

Not a link.

\hyperlink{LinkHere}{This is a link} also

---

\hyperlink{LinkHere}{test\ldots \rule{1in}{1in}\ldots big green box doesn't work, text does}

---

\hyperlink{LinkHere}{test\ldots \XeTeXLinkBox{\rule{1in}{1in}}\ldots big green box now \emph{does} work, and so does text}

---

\clearpage

This page deliberately left blank.

\clearpage

\hypertarget{LinkHere}{}
Link lands here.
\end{document}
于 2014-06-13T06:31:03.243 回答