在tikz中定位带矩阵的超链接形状

时间:2010-05-04 12:32:37

标签: latex tikz pgf

我可以使用以下代码在tikz中绘制超链接形状:

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{matrix}
\usepackage{hyperref}

\begin{document}
\begin{tikzpicture}
\node {%
\href{http://www.stackoverflow.com}{% 
\begin{tikzpicture} 
\filldraw[blue] circle(1cm) node [white] {Click}; 
\end{tikzpicture}}}; 
\end{tikzpicture}

\end{document}

现在我想使用矩阵组织我的形状,并且其中一个形状是超链接的。它几乎可以工作,但我无法将超链接形状与其余形状对齐,并且它比其他形状更大:

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{matrix}
\usepackage{hyperref}

\begin{tikzpicture}
\matrix [matrix of nodes, row sep = 1cm, column  sep=1cm, nodes={circle, draw}]  
{%    First  row:
1           & 2 \\
%    second row:
\path node {\href{http://www.stackoverflow.com}{% 
\begin{tikzpicture} 
\node {3}; 
\end{tikzpicture}}}; & 4\\
};

\end{tikzpicture}
\end{document}

我得到以下结果:

alt text http://picture.im/images/stack.png

我的问题是:如何将上图中的形状3与其他形状对齐,并摆脱外圈?

1 个答案:

答案 0 :(得分:1)

我认为你的目标太高而你的第二个{tikzpicture}正在弄乱你的布局。 您如何看待下面的代码?那是你一直在寻找的吗?

\documentclass{article}
\usepackage{tikz}
  \usetikzlibrary{matrix}
\usepackage[pdftex,active,tightpage]{preview}
  \PreviewEnvironment{tikzpicture}
\usepackage{hyperref}
\begin{document}
\begin{tikzpicture}
  \matrix [matrix of nodes, row sep = 1cm, column  sep=1cm, nodes={circle, draw}]  
    {%
    1 & 2\\%
    \href{http://stackoverflow.com}{3} & 4\\%
    };
\end{tikzpicture}
\end{document}

顺便说一句:\ PreviewEnvironment {tikzpicture}并不是真的需要,但它可以制作一个漂亮的,裁剪的PDF ...