当创建这样的情节时
\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot coordinates {
(0.01,0.01)
(0.09,0.09)
};
\end{axis}
\end{tikzpicture}
\end{document}
pgfplot 使用以下内容xticklabels
:
有什么方法可以让 pgfplots 创建标签,而无需使用and0.01,0.02,...
手动指定它们吗?xticklabels
yticklabels
答案1
部分4.12 数字格式选项从pgfplots
手册将您发送到pgfplotstable
手册中的第节2.7 数字格式选项你就能找到解决方案。
\documentclass[border=3mm]{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[scaled ticks=false, tick label style={/pgf/number format/fixed} ]
\addplot coordinates {
(0.01,0.01)
(0.09,0.09)
};
\end{axis}
\end{tikzpicture}
\end{document}