仅在第一页显示表格标题

仅在第一页显示表格标题

我有一个\longtable分成两页的页面,目前每页顶部都显示标签和标题。我可以更改此设置,让标题和标签仅出现在第一页,而每页上仍保留页眉吗?

\begin{longtable}{|p{3cm}||p{7cm}|p{5cm}|}
    \caption{Some text}
    \label{tab:1}
    \hline
    \textbf{Parameter} & \textbf{Value}  & \textbf{Definition}  \endhead
    \hline
    ...                                              
    \hline
\end{longtable}

答案1

使用这个问题作为基础,我将表格改为:

\begin{longtable}{|p{3cm}||p{7cm}|p{5cm}|}
    \caption{caption}
    \label{tab:1}
    \hline
    \textbf{Parameter} & \textbf{Value} & \textbf{Definition}  \endfirsthead
    \hline
    \textbf{Parameter} & \textbf{Value} & \textbf{Definition}  \endhead
    \hline
    ...
\end{longtable}

相关内容