使用代码和样式标签创建新的 TikZ 键

使用代码和样式标签创建新的 TikZ 键

假设我想在 TikZ 键定义中执行复杂的计算。推荐的方法是什么?

通过阅读手册并深入研究其他问题,我相信解决方案可能看起来像这样:

\documentclass{standalone}
\usepackage{tikz}

\begin{document}
\tikzset{mykey/.style args={#1,#2,#3}{mykey/.code={%
      % perform complicated calculation involving #1, #2 and #3 here
      \def\x{5}
    },
    scale=\x
}}

\begin{tikzpicture}[mykey={1,2,3}]
  \draw[->] (0,0) -- (1,0);
\end{tikzpicture}

\end{document}

然而,这是行不通的:

! Undefined control sequence.
<argument> \x 

我该如何正确地做到这一点?

答案1

下面是一个如何做到这一点的示例:

\documentclass[varwidth,border=10]{standalone}
\usepackage{tikz}

\begin{document}

\tikzset{
  mykey/.code args={#1,#2,#3}{
    % perform complicated calculation involving #1, #2 and #3 here
    % for example
    \pgfmathparse{(#2-#1)*#3}
    \pgfkeysalso{/tikz/scale=\pgfmathresult}
  }
}

\begin{tikzpicture}
  \draw[->, mykey={1,2,3}] (0,0) -- (1,0);
  \draw[->, thick, red] (0,0) -- (1,0);
\end{tikzpicture}

\end{document}

在此处输入图片描述

相关内容