我想让我的轴刻度标签在图中带有第一个小数位: 2 -> 2.0,5 -> 5.0
有人知道该怎么做吗?!
答案1
肯定有重复的地方,但无论如何,这里有一种方法
\documentclass{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.13}
\begin{document}
\begin{tikzpicture}
\begin{axis}[tick label style={
/pgf/number format/fixed,
/pgf/number format/fixed zerofill,
/pgf/number format/precision=1
},
]
\addplot+[] {x};
\end{axis}
\end{tikzpicture}
\end{document}