Ich pgfmanual finde ich nichts darüber. Wer testen möchte: Öffne in Overleaf
\documentclass[margin=5mm]{standalone} \usepackage[ngerman]{babel} \usepackage{pgfplots} \pgfplotsset{compat=1.9} \usetikzlibrary{math} \begin{document} \begin{tikzpicture} \tikzmath{ function funktion(\x){return \x^2+1;}; } \begin{axis}[] \addplot[domain=-3:3,samples=200]{funktion(x)}; \end{axis} \end{tikzpicture} \end{document} |
Das Kapitel »56 Math Library« im pgfmanual hat 6 Seiten. Vielleicht hast Du in der Doku von
pgfplots
gesucht?Vielleicht auch interessant: Why I like TikZ's Math library .
Aha... ich habe einfach nach
\usetikzlibrary{math}
gesucht...