我想删除 y 轴上的乘数。我希望得到 0.001 之类的数字,而不是 1.10^-3。有人能帮我吗
%-----------------------------------------------------------------------------------
% Die Präambel
%
\documentclass[ english, % Verwendete Sprachen, englische Rechtschreibung, Daten, etc.
ngerman, % Verwendete Sprachen, neue deutsche Rechtschreibung, Daten, etc.
11pt, % Standardschriftgröße des Dokumentes
twoside=false, % twoside false = einseitiger Druck; true = zweiseitiger Druck
open=any, % Gibt an auf welcher Seite das nächste Kapitel beginnen soll. Möglichkeiten sind: any, left, right
DIV=14, % DIV=calc
BCOR=12mm, % Bindekorrektur in mm
toc=listof, % Nimmt das Abbildungs- sowie Tabellenverzeichnis in das Inhaltsverzeichnis auf
toc=index, % Nimmt den Index in das Inhaltsverzeichnis auf
bibliography=totoc,
headsepline, % Linie unter Kopfzeile
plainheadsepline % Linie unter Kopfzeile
]
{scrartcl} % KOMA-Script Klasse Report
%---------------------------------------------------------------------------------------
\usepackage{pgfplots, pgfplotstable}
\pgfplotsset{width=15cm,compat=1.3}
\usetikzlibrary{shapes,arrows}
%---------------neue package-------------------------------
\usepackage{amsmath, amsthm, amssymb}
\usepackage{mathtools}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\begin{loglogaxis}[
log ticks with fixed point,
grid=both,
xlabel=Cost,ylabel=Error,
scale ticks above=2,
]
\addplot coordinates {
(5, 8.31160034e-02)
(17, 2.54685628e-02)
(49, 7.40715288e-03)
(129, 2.10192154e-03)
(321, 5.87352989e-04)
(769, 1.62269942e-04)
(1793, 4.44248889e-05)
(4097, 1.20714122e-05)
(9217, 3.26101452e-06)
};
\addplot coordinates {
(7, 8.47178381e-02)
(31, 3.04409349e-02)
(111, 1.02214539e-02)
(351, 3.30346265e-03)
(1023, 1.03886535e-03)
(2815, 3.19646457e-04)
(7423, 9.65789766e-05)
(18943, 2.87339125e-05)
(47103, 8.43749881e-06)
};
\legend{Case 1,Case 2}
\end{loglogaxis}
\end{tikzpicture}
\end{document}