我用pgfplots
它来画一个简单的图,但其中函数值很大,而差异很小。问题是,y 轴没有自动缩放,看起来应该很好。函数值的差异很小,以至于图显示为一条水平线。这是 MWE:
\documentclass{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xlabel={Something},
ylabel={Something else}
]
\addplot table [x index=0, y index=1] {
0 1.05554392382e+14
1 1.05554398535e+14
2 1.05554399989e+14
3 1.05554401482e+14
4 1.05554401823e+14
5 1.05554401882e+14
6 1.05554402382e+14
7 1.05554402832e+14
8 1.05554403724e+14
};
\end{axis}
\end{tikzpicture}
\end{document}
我希望你能帮忙!