答案1
一个简单的例子groupplots
。
\documentclass[border=5mm]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.13}
\usepgfplotslibrary{groupplots}
\begin{document}
\begin{tikzpicture}
\begin{groupplot}[
group style={
group size=1 by 4, % sets number of columns and rows in groupplot array
vertical sep=0pt, % vertical distance between axes
},
axis y line=left, % y axis line on left side only
xmin=0,xmax=10, % set axis
ymin=0, % limits
domain=1:9, % domain, just for example
width=10cm, % width
height=3cm, % and height for each axis
scale only axis, % disregard labels and ticks for scaling
no markers,
enlarge y limits=upper,
]
\nextgroupplot[
ylabel=$y$,
ylabel style={at={(rel axis cs:0,1)},above,rotate=-90}, %move ylabel a bit
axis x line=none] % remove x-axis lines
\addplot{x};
\nextgroupplot[axis x line=none]
\addplot{-x + 10};
\nextgroupplot[axis x line=none]
\addplot{x*x};
\nextgroupplot[
axis x line=bottom, % only x axis line at bottom
xlabel=$x$,
xlabel style={at={(rel axis cs:1,0)},right}]
\addplot+[samples=200] {abs(sin(x*180/pi))};
\end{groupplot}
\end{tikzpicture}
\end{document}