tikzpicture 中缩放后超链接文本的位置

tikzpicture 中缩放后超链接文本的位置

我正在使用 tikzpicture 中节点的缩放选项,其中带有 \href{}{} 的文本是超链接。超链接显示的是未缩放版本的文本。这意味着它们处于错误的位置。我该如何规避这个问题(或者我做错了什么)?谢谢!

\documentclass{standalone}
\usepackage{tikz}
\usepackage{hyperref}

\begin{document}

\begin{tikzpicture}
    \node[scale=.2,text width=1cm] {\href{https://www.google.de}{test test test est set}};
\end{tikzpicture}

\end{document}

答案1

一种方法是使用,它是自动加载的\scalebox一部分。 graphicxtikz

\documentclass[tikz]{standalone} 
\usepackage{hyperref} 
\begin{document} 
\begin{tikzpicture} 
\node {\scalebox{0.2}{\begin{minipage}{1cm}\href{https://www.google.de}{test test test
est set}\end{minipage}}}; 
\end{tikzpicture} 
\end{document}

在此处输入图片描述

相关内容