假設我想在 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}