Latex系列-关于表格

撰写论文时,表格是很好的工具去对比实验结果。这篇博文介绍的表格 包含了几种不同的框格以及注释,可以修成自己需要的形式。

表1.

\begin{table}[!hbp]%开始表格

%其中参数[!hbp] 的意思是:
%!表示尽可能的尝试 h(here) 当前位置显示表格,
%如果实在不行显示在 b(bottom) 底部,

\begin{tabular}{|c|c|c|c|c|}%开始绘制表格

%{|c|c|c|c|c|} 表示会有5列, 每个的方式未居中(c),

%也可以改成靠左(l)和靠右(r) 其中 | 表示绘制列线

\hline %绘制一条水平的线

\hline %再绘制一条水平的线

lable 1-1 & label 1-2 & label 1-3 & label 1 -4 & label 1-5

%这事表格的第一行, 其中5个元素, 用 &隔开.

\hline

label 2-1 & label 2-2 & label 3-3 & label 4-4 & label 5-5 \\

%这事表格的第二行, 其中5个元素, 用 & 隔开.

\hline

%下面这一段有点复杂,参加后面的解释,可以自己修改慢慢体会.

\multirow{2}{*}{Multi-Row} & \multicolumn{2}{|c|}{Multi-Column} & \multicolumn{2}{|c|}{\multirow{2}{*}{Multi-Row and Col}} \\

%上面开始两行合并, 然后又是正常的两列合并, 接下来是两行两列合并

\cline{2-3} %绘制第2列和第3列的横线

& column-1 & column-2 & \multicolumn{2}{|c|}{}\\

%补偿上面的两列合并的那一行

\hline

\end{tabular}

\caption{My first table} %表格的名称

\end{table}

表2.

\begin{table}
  \centering
   \caption{layer parameters. The output dimension is given by (height $\times$ width $\times$ depth). The output dimension is given by (height × width × depth). PS: patch size for convolution and pooling layers; S: stride. GAP: globle average pooling. MX: max pooling.}
  \begin{tabular}{lllll}
    \hline
   Name & Type & Output Dim & PS & S\\
   \noalign{\global\arrayrulewidth1pt}\hline\noalign{\global\arrayrulewidth0.4pt}
    \multicolumn{5}{c}
    {\textbf{Feature net}}\\
    Conv1 & Convolution & 62$\times$62$\times$64 & 3 $\times$ 3 & 1\\
    Pooling1\_se & GAP & 1$\times$1$\times$64 &- &-\\
    Ips1\_se & InnerProduct & 4 &- &-\\
    Ips2\_se & InnerProduct & 64 &- &-\\
     Conv2 & Convolution &  60$\times$60$\times$64 & 3 $\times$ 3  & 1\\
      Conv3 & Convolution &  58$\times$58$\times$64 & 3 $\times$ 3  & 1\\
      Conv4 & Convolution &  56$\times$56$\times$64 & 3 $\times$ 3  & 1\\
      Conv5 & Convolution &  54$\times$54$\times$64 & 3 $\times$ 3 & 1\\
      Pool1 & MP &   27$\times$27$\times$64 &2 $\times$ 2 &2\\
      Ips1 & InnerProduct & 500 &- &-\\
      \hline
       \multicolumn{5}{c}
    {\textbf{Metric net}}\\
      Ips2 & InnerProduct & 10 &- &-\\
      Ips3 & InnerProduct & 2 &- &-\\
    \hline

  \end{tabular}
\end{table}

Latex系列-关于表格_第1张图片

你可能感兴趣的:(Latex)