默认情况下,纵轴标签会旋转。这对于较短的单字母标签(例如)没有用$\phi$
。
如何轻松抑制给定图中的旋转?我在第 4.8.3 节(标签)中找不到任何相关信息。
例如
\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.8}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xlabel=$x$,
ylabel=$\phi$
]
\addplot{x^2};
\end{axis}
\end{tikzpicture}
\end{document}
我明白了
但我想要
答案1
ylabel style={rotate=-90}
您可以通过添加选项来禁用 y 标签的旋转axis
。