PGFplots 中的标记 (xtick) 具有更高的精度

PGFplots 中的标记 (xtick) 具有更高的精度

形象的

以下 MWE 显示所有轴标记都相同的图形(因为比例太窄)。选项xtick没有“足够高的精度”。

在此处输入图片描述

MWE 代码

我没有找到合适的例子pgfplots 软件包手册- 也许我没有读/想得足够久...我不确定应该在轴环境中输入什么选项。

\documentclass{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}

\begin{document}
\begin{tikzpicture}
\begin{axis}[every minor tick]
\addplot coordinates{(0.999,2e-2) (1.001,12) };
\end{axis}
\end{tikzpicture}

\end{document}

类似(但不同)的问题

答案1

基于乌姆兹的评论,下面的代码解决了该问题。

\documentclass[margin=2mm]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}

\begin{document}
\begin{tikzpicture}
\begin{axis}[every minor tick,
  x tick label style={
    /pgf/number format/.cd,
    fixed,
    fixed zerofill,
    precision=4
  }]
\addplot coordinates{(0.999,2e-2) (1.001,12) };
\end{axis}
\end{tikzpicture}

\end{document}

在此处输入图片描述

相关内容