pgfmath: 'pgfmathdeclarefunction' mit optionlem Argument
[![alt text][1]][1]
Kann `\pgfmathdeclarefunction{<name>}{<Anzahl Argumnte>}{<Inhalt>}` Argumente>}{<Inhalt>}` ein optionales Argument einstellen?
Ich möchte im Beispiel, dass `#1` den Standardwert `\Zahl` hat und dann ggf. `\Plus[3](4)`.
\documentclass[margin=5mm, varwidth]{standalone}
\usepackage{tikz}
\pgfmathtruncatemacro{\Zahl}{1}
\pgfmathdeclarefunction{Plus}{2}{\pgfmathparse{#1+#2}}
\begin{document}
Test: \pgfmathparse{Plus(1,2)}\pgfmathresult
\end{document}
[1]: https://texwelt.de/wissen/upfiles/55555555_264.png