Loading

LaTex【六】表格排版—表格标题位置

LaTex中表格排版——表格描述位置调整

LaTex模板大多默认将表格描述置于表格下方,可通过修改 \caption 的位置调整。

1. 位于表格下方(默认)

\begin{table}[h]

    \begin{tabular}{l|c|c|c|c|c}
        ...
    \end{tabular}
     % 表尾
    \caption{表格描述内容}
\end{table}

 

2. 位于表格上方

\begin{table}[h]
    % 表头
    \caption{表格描述内容}

    \begin{tabular}{l|c|c|c|c|c}
        ...
    \end{tabular}

\end{table}

 

posted @ 2021-11-23 09:57  _yhwu  阅读(12030)  评论(0)    收藏  举报