Wo finde ich ein Handbuch zu TikZ-Bibliothek 'math''math'?
`\usetikzlibrary{math}`
Ich pgfmanual finde ich nichts darüber.
Wer testen möchte:
\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}