答案1
我假设您正在寻找y tick label style={/pgf/number format/sci}
。另请参阅第 4.13.1 章(常用号码打印设置) 在当前pgfplots
手册中(我发现这对初学者来说有点难,因为这是tikz
我理解的内容,而不是pgfplots
特定的),另请参阅*pgfplotstable
第 2.7 章的手册(数字格式选项)。
我不知道如何
mantissa
从刻度和轴的顶部获得共同的分离:这里有专家吗?
\documentclass{article}
\usepackage{pgfplots}
\begin{document}
% Based on http://pgfplots.sourceforge.net/gallery.html
\begin{tikzpicture}
\begin{axis}[
xlabel=$x$,
ylabel={$f(x) = x^2 - x +4$},
% Added
y tick label style={/pgf/number format/sci},
]
% use TeX as calculator:
\addplot {x^2 - x +4};
\end{axis}
\end{tikzpicture}
\end{document}
* “与数字打印相关的选项在 pgfplotsTable 手册中有详细描述,该手册随 pgfplots 一起提供。”