pgfplots
最近我正在过渡到使用它来完成大部分的情节,但我并不总是能够使情节按照我想要的方式呈现。
我正在绘制一些带有误差线的数据点,如果我能让图例反映这一点,那就太好了,例如类似于 gnuplot 生成的图例。下面基本上是我想要的与我拥有的(gnuplot
左边是,pgfplots
右边是)
强制性的 MWE 基本上是从手册中复制而来,但带有图例
\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.12}
\begin{document}
\begin{tikzpicture}
\begin{axis} [
legend style={
at={(0.05,0.95)}, anchor=north west
},
]
\addplot+ [
only marks,
error bars/.cd,
y dir=both, y fixed=0.1,
]
coordinates {
(0,0)
(0.1,0.1)
(0.2,0.2)
(0.5,0.5)
(1,1)
};
\addlegendentry{Data}
\end{axis}
\end{tikzpicture}
\end{document}
我认为可以做到这一点,\addlegendimage
但我还不够熟练,无法pgfplots
找到如何为每种节点样式自动化这个过程。
编辑:这是编译 MWE 的结果,供将来参考