当前位置:   article > 正文

LaTeX Tables_latex表格生成

latex表格生成

LaTeX表格

最近使用Elsevier的LaTeX模板进行论文排版,在B站简单的学习了下,生成表格时遇到好些问题,花时间了解了下,简单记录一下,感觉有好多想写的,真正开始记录的时候感觉又没什么写的,文笔有限,敬请见谅(狗头/狗头/狗头)。

表格创建

推荐使用Overleaf作为LaTeX的编辑器,简单表格通过Overleaf自带表格添加功能即可实现。
复杂表格创建,可复制数据到Tables Generator中自动生成表格LaTeX表达式。
在这里插入图片描述

普通表格创建

表格创建需要用到\usepackage{graphicx},导入graphicx包,标准格式为:

\begin{table}
    \centering
    \begin{tabular}{ccc}
      1  & 2 & 3 \\
      4  & 5 & 6 \\
      7  & 8 & 9 \\
    \end{tabular}
    \caption{This is a Table}
    \label{tab:my_label}
\end{table}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

在这里插入图片描述

生成具有边线的表格,通过加入 \hline(横线) 和 | (竖线)即可实现。

\begin{table}
    \centering
    \begin{tabular}{|c|c|c|}\hline
      1  & 2 & 3 \\ \hline
      4  & 5 & 6 \\ \hline
      7  & 8 & 9 \\ \hline
    \end{tabular}
    \caption{This is a Table}
    \label{tab:my_label}
\end{table}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

在这里插入图片描述

三线表创建

三线表需要使用\usepackage{booktabs}命令,导入booktabs包,分别在第一行和最后一行加入\toprule \midrule \bottomrule添加相应的线段。

\begin{table}
\centering
\begin{tabular}{c c c}
    \toprule
    1 & 2 & 3 \\ \midrule
    4 & 5 & 6 \\
    7 & 8 & 9 \\ \bottomrule
    \end{tabular}
\caption{This is  a table}
\label{tab:my-table}
\end{table}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

在这里插入图片描述

表格宽度控制

不等宽度表格

等宽度表格的创建需要使用\usepackage{array},导入array包,生成指定宽度的表格(每列表格的宽度可不同),表格内容默认居左显示,表达式如下:

\begin{table}
\centering
    \begin{tabular}{ | m{2cm} | m{2cm}| m{2cm} | } 
          \hline
          1 & 2 & 3 \\  \hline
          4 & 5 & 6 \\  \hline
          7 & 8 & 9 \\  \hline
    \end{tabular}
\caption{This is  a table}
\label{tab:my-table}
\end{table}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

在这里插入图片描述
通过\resizebox{}命令,可指定基于文本内容宽度的表格。

\begin{table}
\centering
    \resizebox{\textwidth}{!}{
    \begin{tabular}{ | m{2cm} | m{2cm}| m{2cm} | } 
          \hline
          1 & 2 & 3 \\  \hline
          4 & 5 & 6 \\  \hline
          7 & 8 & 9 \\  \hline
    \end{tabular}
    }
\caption{This is  a table}
\label{tab:my-table}
\end{table}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

在这里插入图片描述

可在\textwidth前指定宽度系数改变表格宽度。

\begin{table}
\centering
    \resizebox{0.5\textwidth}{!}{
    \begin{tabular}{ | m{2cm} | m{2cm}| m{2cm} | } 
          \hline
          1 & 2 & 3 \\  \hline
          4 & 5 & 6 \\  \hline
          7 & 8 & 9 \\  \hline
    \end{tabular}
    }
\caption{This is  a table}
\label{tab:my-table}
\end{table}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

等宽度表格

使用\usepackage{tabularx},导入tabularx包,可创建等宽度大小的表格。

\begin{table}
\centering
    \begin{tabularx}{0.8\textwidth}{ 
        | >{\centering\arraybackslash}X
        | >{\centering\arraybackslash}X
        | >{\centering\arraybackslash}X | }
          \hline
          1 & 2 & 3 \\  \hline
          4 & 5 & 6 \\  \hline
          7 & 8 & 9 \\  \hline
    \end{tabularx}
\caption{This is  a table}
\label{tab:my-table}
\end{table}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

在这里插入图片描述

表格底部notes添加

注意,使用Tables Generator生成的复杂表格,当在其下方加入notes时,可能出现宽度不一致的现象,需要对自动生成的表格进行一定的修改,方可实现notes的正确添加。

notes的添加需要导入threeparttable包,\usepackage{threeparttable},表达式如下所示,在下图所示位置添加对应的命令即可实现。

\begin{table*}[]
% \small
\centering
\caption{Test table in latex}
\label{tab:my-table4}
\begin{threeparttable}[b]
% \begin{tabular}{|m{1cm}|m{1cm}|m{1cm}|m{1cm}|m{1cm}|}
\begin{tabularx}{0.7\textwidth}{
>{\centering\arraybackslash}X
>{\centering\arraybackslash}X
>{\centering\arraybackslash}X
>{\centering\arraybackslash}X
>{\centering\arraybackslash}X}
\toprule
row/col & col1 & col1 & col1 & col1 \\ \midrule
row1    & 1    & 2    & 3    & 4    \\ 
row1    & 1    & 2    & 3    & 4    \\ 
row1    & 1    & 2    & 3    & 4    \\ 
row1    & 1    & 2    & 3    & 4    \\ \bottomrule
\end{tabularx}
\begin{tablenotes}[normal,flushleft]
\item[1] In this study, our aim was to address three aspects of face mask wearing—public policies, individual behaviors and attitudes, and the collective experiences of the affected communities. 
\item[2] In this study, our aim was to address three aspects of face mask wearing—public policies, individual behaviors and attitudes, and the collective experiences of the affected communities. 
\end{tablenotes}
\end{threeparttable}
\end{table*}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26

论文中排版效果如上所示

在这里插入图片描述

表格字体大小控制

LaTeX中字体大小由小到大依次为:
\tiny
\scriptsize
\footnotesize
\small
\normalsize
\large
\Large
\LARGE
\huge
\Huge
控制表格中字体大小,只需要在表格后加入以上表达式即可

\begin{table}
\small(表示大小的命令)
  • 1
  • 2

总结

将以上提到的命令进行简单组合,即可实现一般论文中LaTeX表格生成的需要。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/965383
推荐阅读
  

闽ICP备14008679号