如何防止 pgfplots 使用 10^n 符号表示轴刻度

如何防止 pgfplots 使用 10^n 符号表示轴刻度

当创建这样的情节时

\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,...手动指定它们吗?xticklabelsyticklabels

答案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}

在此处输入图片描述

相关内容