答案1
我的新 LaTeX3 包tabularray
是过时软件包的替代品tabu
。您可以在环境中使用X
列。longtblr
\documentclass[12pt]{article}
\usepackage[a6paper,margin=10mm]{geometry}
\pagestyle{empty}
\usepackage{tabularray}
\usepackage{xcolor}
\usepackage{hyperref}
\hypersetup{colorlinks}
\begin{document}
Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text.
\NewTblrTheme{fancy}{
\SetTblrStyle{firsthead}{font=\bfseries}
\SetTblrStyle{firstfoot}{fg=blue}
\SetTblrStyle{caption-tag}{red}
}
\begin{longtblr}[
theme = fancy,
caption = {Long Tabular},
entry = {Short Caption},
label = {tblr:test},
note{a} = {It is the first footnote.},
note{$\dag$} = {It is the second long long long long long long footnote.},
]{
colspec = {XXX}, hlines,
rowhead = 2, rowfoot = 1,
row{odd} = {gray9}, row{even} = {teal9},
row{1-2} = {purple7}, row{Z} = {blue7},
}
Head & Head & Head \\
Head & Head & Head \\
Alpha & Beta & Gamma \\
Epsilon & Zeta & Eta \\
Iota & Kappa & Lambda \\
Nu & Xi & Omicron \\
Rho & Sigma & Tau \\
Phi & Chi & Psi \\
Alpha & Beta & Gamma \\
Epsilon & Zeta\TblrNote{a} & Eta \\
Iota & Kappa\TblrNote{$\dag$} & Lambda \\
Nu & Xi & Omicron \\
Rho & Sigma & Tau \\
Phi & Chi & Psi \\
Alpha & Beta & Gamma \\
Epsilon & Zeta & Eta \\
Iota & Kappa & Lambda \\
Nu & Xi & Omicron \\
Rho & Sigma & Tau \\
Phi & Chi & Psi \\
Foot & Foot & Foot \\
\end{longtblr}
Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text.
\end{document}