Overleaf 中的 Longtable Caption 错误 - 包 ltCaption 错误:在 longtable* 环境中不允许

Overleaf 中的 Longtable Caption 错误 - 包 ltCaption 错误:在 longtable* 环境中不允许

我正在尝试在 Latex 中创建一个长表,并使用 Overleaf 作为我的工具。我的表格打印得很好,除了标题。我查看了过去针对类似问题提供的解决方案,并遵循了相同的说明,但无济于事。这是我的代码:

\begin{longtable*}[h!]{|p{2.5cm}|p{3cm}|p{6cm}|p{1.5cm}|}
% \caption{Long table caption.\label{long}}\\
\caption{Theorem numbers, names, statements, and assumptions for theorems derived in paper \label{TheoremTable}}\\
\hline
\textbf{Theorem Number} & \textbf{Assumption Code} & \textbf{Theorem} & \textbf{Assumptions} \\
\hline
1 & Partition of Roles Within a Lifecycle Phase &   For any lifecycle phase \(l \in LPHASES\), the set \textit{ROLES} can be partitioned into \(AG_l\) and \(IG_l\). &  a \\
.
.
.
.
(Many more lines)
.
.
.
\hline

% \caption{Theorem numbers, names, statements, and assumptions for theorems derived in paper \label{TheoremTable}}\\

\end{longtable*}

我尝试在表格顶部和底部添加标题,但同样的错误仍然存​​在(Package ltCaption 错误:在 longtable* 环境中不允许)。编译后,我只看到前两列添加了一行新行。有人能帮我解决这个问题并告诉我我哪里出错了吗?提前谢谢。

相关内容