latex(四):表格问题

插入表格的公式:

\begin{table}[htbp]
    \centering
    \caption{Add caption} %添加标题
    \begin{tabular}{llllllllll} %创建五列
        \toprule %定实线,要几条就加几个\toprule,这里两个,就是双实线
        Method    &MOTA(\%)↑    &MOTP↑    &IDF1(\%)↑    &MT(\%)↑    &ML(\%)↓    &FP↓    &FN↓    &IDSw↓    &Frag↓ \\
        \midrule %表体的横线,可以加粗,在后面加上[2pt]试试
        FL MLP IID & 1.8 & 1.8 & 1.8 & 2.88 \\ %这个是表体
        MLP IID & 1.8 & 1.8 & 1.8 & 1.8 \\
        FL MLP Non-IID & 1.8 & 1.8 & 1.8 & 0.8 \\
        MLP Non-IID & 1.8 & 1.8 & 1.8 & 0.8 \\
        FL CNN IID & 0.8 & 0.8 & 0.8 & 2.8 \\
        CNN IID & 0.8 & 0.8 & 0.8 & 8 \\
        FL CNN Non-IID & 0.8 & 0.8 & 0.85 & 0.8 \\
        CNN Non-IID & 0.8 & 0.8 & 0.8 & 0.8 \\
        \bottomrule %底线,同样也是两条
    \end{tabular}
    \label{tab:addlabel}
\end{table}
 

 Latex 两栏排版中图片、表格需要设置为一栏显示,在{figure*}、{table*}中加上 *

插入图的说明:

     \begin{tablenotes}
        \footnotesize
        \item[*]↑:the bigger the better; ↓: the smaller the better.
        \item[*]AO: (average overlap) Average overlap. SR: Success rate, refers to the accuracy of successful tracking under a certain AO threshold, taking two thresholds of 0.5 and 0.75.
    \end{tablenotes}

 

posted @ 2022-08-22 15:51  瓜瓜爱呱呱  阅读(178)  评论(0编辑  收藏  举报