当前位置: 首页 > 工具软件 > sane_tikz > 使用案例 >

Latex tikz绘制图表

宋景福
2023-12-01

导入包

\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*}
 类似资料: