为什么这不能以固定数字格式生成 y 刻度标签?(pgfplots 版本 1.9 以科学格式生成 y 刻度标签)
\documentclass[12pt]{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[y tick label style={/pgf/number format/fixed}]
\addplot{cos(x)/12.0};
\end{axis}
\end{tikzpicture}
\end{document}
答案1
添加zerofill={true}
将修复此问题:
\documentclass[12pt]{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.11}
\begin{document}
\begin{tikzpicture}
\begin{axis}[y tick label style={/pgf/number format/fixed,
/pgf/number format/fixed zerofill={true}}]
\addplot{cos(x)/12.0};
\end{axis}
\end{tikzpicture}
\end{document}