97

I have a big table which contains hundreds of rows. I want to repeat the top two rows on every page of the table. How can I do it in TeX?

1
  • 9
    @Alan: It's related, but it isn't a duplicate. More of a follow-up question.
    – Caramdir
    Commented Feb 18, 2011 at 5:21

4 Answers 4

109

Both the longtable package and the supertabular package can do this. Here's an example using longtable:

\documentclass{article}
\usepackage{longtable}
\begin{document}      
\begin{longtable}{ccc}
\hline
Column 1 & Column 2 & Column 3\\
\hline
\endhead % all the lines above this will be repeated on every page
A & B & C\\
A & B & C\\
... many lines of table ...
\end{longtable}
\end{document}

The same basic idea works with supertabular but the commands for setting the repeated elements across pages is done before the supertabular environment itself:

\documentclass{article}
\usepackage{supertabular}
\begin{document}
\tablehead{%
\hline
Column 1 & Column 2 & Column 3\\
\hline}
\tabletail{\hline}
\begin{supertabular}{ccc}
A & B & C\\
A & B & C\\
\end{supertabular}
\end{document}
4
  • 6
    I'd like to mention that I tried this solution with a longtabu table and it worked. Commented Apr 11, 2013 at 10:23
  • This also works with pgfplotstable and tabularx
    – MJeffryes
    Commented Jul 26, 2018 at 15:00
  • How can I do this in supertabular? Commented May 6, 2019 at 4:40
  • @ChamilaWijayarathna I've added a supertabular example.
    – Alan Munn
    Commented May 6, 2019 at 14:29
54

A solution with continued headers and footers

\documentclass{article}
\usepackage{longtable}
\begin{document}      

\begin{longtable}{ccc}
\caption{My caption for this table\label{foo}}\\\hline
Column 1 & Column 2 & Column 3\\\hline
\endfirsthead
\multicolumn{3}{@{}l}{\ldots continued}\\\hline
Column 1 & Column 2 & Column 3\\\hline
\endhead % all the lines above this will be repeated on every page
\hline
\multicolumn{3}{r@{}}{continued \ldots}\\
\endfoot
\hline
\endlastfoot
A & B & C\\     A & B & C\\
A & B & C\\     A & B & C\\
A & B & C\\ \newpage
A & B & C\\     A & B & C\\
A & B & C\\     A & B & C\\
\end{longtable}
\end{document}

page1page2

3

An alternative solution with tblr environment of tabularray package:

\documentclass{article}

\usepackage[a6paper,margin=1.5cm]{geometry}

\usepackage{tabularray}

\begin{document}      

\begin{longtblr}[
  caption = {Long Title},
  label = {tblr:test},
]{
  colspec = {lll},
  hlines,
  rowhead = 2,
}
  Column 1 & Column 2 & Column 3 \\
  Column 1 & Column 2 & Column 3 \\
  Alpha    & Beta     & Gamma    \\
  Epsilon  & Zeta     & Eta      \\
  Iota     & Kapp     & Lambdaa  \\
  Alpha    & Beta     & Gamma    \\
  Epsilon  & Zeta     & Eta      \\
  Iota     & Kapp     & Lambdaa  \\
  Alpha    & Beta     & Gamma    \\
  Epsilon  & Zeta     & Eta      \\
  Iota     & Kapp     & Lambdaa  \\
  Alpha    & Beta     & Gamma    \\
  Epsilon  & Zeta     & Eta      \\
  Iota     & Kapp     & Lambdaa  \\
  Alpha    & Beta     & Gamma    \\
  Epsilon  & Zeta     & Eta      \\
  Iota     & Kapp     & Lambdaa  \\
  Alpha    & Beta     & Gamma    \\
  Epsilon  & Zeta     & Eta      \\
  Iota     & Kapp     & Lambdaa  \\
  Alpha    & Beta     & Gamma    \\
  Epsilon  & Zeta     & Eta      \\
  Iota     & Kapp     & Lambdaa  \\
  Alpha    & Beta     & Gamma    \\
  Epsilon  & Zeta     & Eta      \\
  Iota     & Kapp     & Lambdaa  \\
\end{longtblr}

\end{document}

enter image description here

0

Maybe the package tabularray can solve this problem in a more simple way. Just as (The code below is somehow copied from what written by user Alan Munn):

\documentclass{article}
\usepackage{tabularray} % A newest package for tables written in LaTeX 3
  \begin{document}      
  \begin{longtblr}{
    colspec = {ccc},
    rowhead = 1 % indidate the program to repeat the 1st row in the beginning of every page.
  }
  \hline
  Column 1 & Column 2 & Column 3\\
  \hline
  A & B & C\\
  A & B & C\\
  %... many lines of table ...%
  \end{longtblr}
\end{document}

As for the header, it can also be set in the beginning code block \begin{longtblr}{...}, for more detailed information you can read the corresponding PDF file.

However there is one side effect that the time it takes for rendering may be longer because of the mechanism the package uses.

1
  • 3
    Welcome to TeX.SE! Do you see @L.J.R: answer? In what differ your answer from his?
    – Zarko
    Commented Mar 27, 2022 at 8:04

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .