Kann man für Ich möchte im Beispiel, dass Öffne in Overleaf
\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} gefragt 01 Nov '18, 23:57 cis |
Öffne in Overleaf
\documentclass[margin=5mm, varwidth]{standalone} \usepackage{tikz} \tikzset{declare function={Plus(\x,\y)=\x+\y;}} \begin{document} Test: \pgfmathparse{Plus(1,2)}\pgfmathresult \end{document} beantwortet 02 Nov '18, 01:19 Community |