\usepackage{tikz}
\usepackage{pgfplots}
遇到的问题(解决方案代码里都有):
1、 legend摆放位置问题
2、多条曲线怎么画
\begin{tikzpicture}
\begin{axis}
[
legend pos=outer north east, %legend位于右上方而不在图里(防止遮挡)
xlabel=Epoch
]
\addlegendentry{Pr} %第一条曲线的名称
\addplot+[smooth] %smooth表示光滑曲线
coordinates
{
(0,0) (10,0.313) (20,0.401) (30,0.504)
};
\addlegendentry{Re} %第二条曲线的名称
\addplot+[smooth]
coordinates
{
(0,0) (10,0.313) (20,0.401) (30,0.504)
};
\end{axis}
\end{tikzpicture}
问题:如何在整页居中? 在table后加上*就可以了
\begin{table*}[htbp]
\end{table*}