美文网首页
latex整理

latex整理

作者: 赵小闹闹 | 来源:发表于2023-09-06 14:44 被阅读0次

    1.常见三线表画法

    \usepackage{graphicx}

    \begin{table}[htb]
      \caption{ Quantitative comparison h.   }
      \label{tab:3}
      \begin{tabular}{cccc}
        \toprule
         Method& Ped2 &Avenue &SHTech  \\
        \midrule
        \texttt  \ ConvLSTM-AE\cite{luo2017remembering} & 0.881 & 0.770 & - \\
    
    
        \bottomrule
      \end{tabular}
    \end{table}
    

    2.控制表格宽度

    将{cccc}修改如下
    \begin{tabular}{p{3cm}<{\centering}p{2.5cm}<{\centering}p{2cm}<{\centering}}

    3.修改表格字体大小

    Latex 设置字体大小命令由小到大依次为:
    \tiny
    \scriptsize
    \footnotesize
    \small
    \normalsize
    \large
    \Large
    \LARGE
    \huge
    \Huge

    4表格某一行对某几列划线

    使用\cline{x-y}指令在表格中插入一条从第x列到第y列的细横线。

    修改图表与上下文的间距

    \vspace{-0.8cm} %调整图片与上文的垂直距离

    注意:

    该语句,要在\begin{figure}和\end{figure}上面和下面使用(可以分别使用,只调整上间距或者下间距)。


    image.png

    相关文章

      网友评论

          本文标题:latex整理

          本文链接:https://www.haomeiwen.com/subject/mwxhkdtx.html