0

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}

次に、マトリックスを使用して図形を整理し、図形の1つをハイパーリンクします。ほぼ機能しますが、ハイパーリンクされた図形を他の図形と揃えることができず、他の図形よりも大きくなっています。

\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}

次の結果が得られます。

代替テキスト
(ソース:picture.im

私の質問は、上の写真の形状3を他の形状と揃えて、外側の円を取り除くにはどうすればよいですか?

4

1 に答える 1

1

目標が高すぎて、2 番目の {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 になります...

于 2010-05-04T13:31:32.933 に答える