Add section about pgfplots

This commit is contained in:
Julius Freudenberger 2025-09-24 13:20:11 +02:00
parent 1163a6039a
commit 916e4fc27a
7 changed files with 124 additions and 0 deletions

View file

@ -0,0 +1,12 @@
\begin{tikzpicture}
\begin{axis}[
title={Beispieldiagramm},
xlabel={$x$-Achse},
ylabel={$y$-Achse},
]
\addplot[red,
domain=-5:5,
samples=100] { x^2 };
\legend{$x^2$}
\end{axis}
\end{tikzpicture}