我正在使用 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}