fünfhaus
24-09-2016, 12:23
Hier ein Minimalbeispiel:
\documentclass[12pt,paper=a4]{scrartcl}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{pgfplots}
\usepgfplotslibrary{groupplots}
\begin{document}
\begin{tikzpicture}[scale=0.9]
\begin{groupplot}[
group style={group size=2 by 2}]
\nextgroupplot[xmin=0,ymin=0]
\addplot[mark=none,blue,ultra thick]{2*x};
\nextgroupplot[ymax=5]
\end{groupplot}
\end{tikzpicture}
\end{document}
Das rechte Diagramm soll leer bleiben. Wie kann man ymax vorgeben? ymax soll z. B. "5" sein.
\documentclass[12pt,paper=a4]{scrartcl}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{pgfplots}
\usepgfplotslibrary{groupplots}
\begin{document}
\begin{tikzpicture}[scale=0.9]
\begin{groupplot}[
group style={group size=2 by 2}]
\nextgroupplot[xmin=0,ymin=0]
\addplot[mark=none,blue,ultra thick]{2*x};
\nextgroupplot[ymax=5]
\end{groupplot}
\end{tikzpicture}
\end{document}
Das rechte Diagramm soll leer bleiben. Wie kann man ymax vorgeben? ymax soll z. B. "5" sein.