BYRIO / BUPTBachelorThesis

A LaTeX Template for BUPT Bachelor Thesis (updated in 2023)
MIT License
172 stars 28 forks source link

feat: support longtable #18

Closed QQKdeGit closed 1 year ago

QQKdeGit commented 1 year ago

添加了对长表格的支持,效果如下:

示例代码如下:

\begin{buptlongtable}{|c|c|}{这是一个跨页长表}{longtable-label}
    % 首页表头
    \hline
    \textbf{列1} & \textbf{列2}         \\ \hline
    \endfirsthead

    % 非首页表头
    \hline
    \textbf{列1} & \textbf{列2}         \\ \hline
    \endhead

    % 非末页表尾
    \multicolumn{2}{|r|}{续下页}         \\ \hline
    \endfoot

    % 末页表尾
    \endlastfoot

    % 表格内容
    内容1        & 内容2                 \\ \hline
    内容3        & 内容4                 \\ \hline
    内容5        & 内容6                 \\ \hline
    内容7        & 内容8                 \\ \hline
\end{buptlongtable}

以下是几个使用 buptlongtable 的注意事项: