自动化横跨多页的长表的 hline

自动化横跨多页的长表的 hline

排版包含大量多页长表的文档,如何才能自动完成\hline页面末尾的排版。

\documentclass[12pt]{article}
\usepackage[papersize={5cm,7cm},text={7cm,5cm},centering]{geometry}
\usepackage{longtable}

\begin{document}

\begin{longtable}[c]{|l|l|l|}
    \hline Name & B.Year & D.Year \\\hline\endhead
    AAA & 2565 & 4879 \\
    AAA & 2565 & 4879 \\
    AAA & 2565 & 4879 \\
    AAA & 2565 & 4879 \\
    AAA & 2565 & 4879 \\
    AAA & 2565 & 4879 \\
    AAA & 2565 & 4879 \\
    AAA & 2565 & 4879 \\
    AAA & 2565 & 4879 \\
    AAA & 2565 & 4879 \\
    AAA & 2565 & 4879 \\
    AAA & 2565 & 4879 \\\hline
\end{longtable}

\end{document}

答案1

使用\endfoot定义

\begin{longtable}[c]{|l|l|l|}
\hline Name & B.Year & D.Year \\\hline
\endhead
\hline
\endfoot
    AAA & 2565 & 4879 \\
 [ ... ]

相关内容