在表格列表中,长表标题重复次数等于长表所占的页数

在表格列表中,长表标题重复次数等于长表所占的页数

在表格列表中,长表标题重复的次数等于长表占用的页数。我只想对整个长表显示一次标题和页码。在此处输入图片描述

答案1

大概\caption是在表头里面?

然后将其放入并在以下页面的页眉中\endfirsthead使用空的可选参数( )。空的可选参数会抑制目录中的条目。\caption\endhead\caption[]

例子:

\documentclass{article}
\usepackage[a6paper]{geometry}

\usepackage{longtable}

\begin{document}
\listoftables
\newpage
\begin{longtable}{l}
  \caption{Workers}
\endfirsthead
  \caption[]{Workers}
\endhead
  1\\2\\3\\4\\5\\6\\7\\8\\9\\10\\
  11\\12\\13\\14\\15\\16\\17\\18\\19\\20\\
  21\\22\\23\\24\\25\\26\\27\\28\\29\\30\\
  31\\32\\33\\34\\35\\36\\37\\38\\39\\40\\
  41\\42\\43\\44\\45\\46\\47\\48\\49\\50\\
\end{longtable}
\end{document}

该表格跨越三页,但目录中仅列出一个条目:

\表列表

还可以给出表头并在每一页上重复:

\documentclass{article}
\usepackage[a6paper]{geometry}

\usepackage{longtable}

\begin{document}
\listoftables
\newpage
\begin{longtable}{l}
  \caption{Workers}\\
  Head\\
  \hline
\endfirsthead
  \caption[]{Workers}\\
  Head\\
  \hline
\endhead
  1\\2\\3\\4\\5\\6\\7\\8\\9\\10\\
  11\\12\\13\\14\\15\\16\\17\\18\\19\\20\\
  21\\22\\23\\24\\25\\26\\27\\28\\29\\30\\
\end{longtable}
\end{document}

第 1 页 第2页 第 3 页

相关内容