以科学计数法显示数字时,如何更改小数点前显示的位数?在下面的代码中,我希望得到类似13.9e9显示在 x 轴上,而不是1.39e10。
感谢您的回答。
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{positioning}
\usepackage{pgfplots}
\begin{document}
\pgfkeys{/pgf/number format/.cd,fixed,precision=3}
\begin{tikzpicture}
\begin{axis}[
xmin=13900000000,
xmax=14100000000,
xlabel={$f$ [Hz]},
ylabel={$|E_{T12}(f)|$},
]
\addplot [color=black]
table[row sep=crcr]{%
13900000256 0.772152900695801\\
13939000320 0.768190622329712\\
13978999744 0.772846043109894\\
14003000320 0.777175188064575\\
14033000448 0.773870348930359\\
14062000128 0.767529368400574\\
14078999552 0.768778383731842\\
14099999744 0.771605312824249\\
};
\end{axis}
\end{tikzpicture}
\end{document}