Graph mit Definitionsmenge in einem xparse-Befehl
Warum ergibt das folgende Beispiel die Fehlermeldung `Paragraph ended before \pgfplots@domain@to@foreach was complete`?
\documentclass{article}
\usepackage{xparse}
\usepackage{pgfplots}
\pgfplotsset{compat=newest,axis lines=middle}
\ExplSyntaxOn
\NewDocumentCommand \Diagramm {}
{
\begin{tikzpicture}
\begin{axis}[xmin=0,xmax=13.8,ymin=0,ymax=58]
\addplot[domain=0:13] {4*x};
\end{axis}
\end{tikzpicture}
}
\ExplSyntaxOff
\begin{document}
\Diagramm
\end{document}