据我所知,以下代码应该在右侧有 y 轴标签:
\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.4}
\usepackage{tikz}
\begin{document}
\begin{figure}
\begin{tikzpicture}
\pgfplotstableread{Example.txt} \mytable
\begin{axis} [ ytick pos=right,
ylabel near ticks,
ylabel={Bla}, ]
\addplot table [x index=0, y index=1] {\mytable};
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}
其中 'Example.txt' 只是 0 2 1 2 2 2 3 2 4 1(带换行符,它们不会出现在这里)不幸的是,y 标签仍然出现在左侧。我做错了什么?
谢谢,Juhui