将 Adjustbox 类型功能与 Supertabular 结合使用

将 Adjustbox 类型功能与 Supertabular 结合使用

我正在尝试将一个长表格添加到一个两列的 latex 文档中。由于表格很长,因此它不会在第二列继续,而是在第一列继续,如下所示。

在此处输入图片描述

以下是我当前正在使用的代码。

\begin{table}[htbp]
\caption{Exceptions encountered by participants and their reactions}
    \begin{center}
    \begin{adjustbox}{width=0.5\textwidth}
    \begin{tabular}{|p{0.3\linewidth}|p{0.4\linewidth}|p{0.3\linewidth}|}
    \hline
    \textbf{Context}&\textbf{Exception message} &\textbf{Reaction of the participant} \\
    ...
    ...
    \end{tabular}
    \label{exceptions}
    \end{adjustbox}
    \end{center}
    \end{table}

我也正在使用它,adjustbox因为我需要打破表格单元格内的文本。

现在我需要拆分表格以继续下一栏。我阅读并尝试使用supertabular如下方法。

    \begin{supertabular}{lll}
    \hline
    \textbf{Context}&\textbf{Exception message} &\textbf{Reaction of the participant} \\
    ...
    ...
    \end{tabular}

但现在我的表格如下所示。在此处输入图片描述

我的页面中第 3 列不再显示。我该如何解决?

答案1

根据问题的评论,我尝试了以下代码并且成功了。

    \begin{supertabular}{|p{0.3\linewidth}|p{0.4\linewidth}|p{0.3\linewidth}|}
    \hline
    \textbf{Context}&\textbf{Exception message} &\textbf{Reaction of the participant} \\
    ...
    ...
    \end{tabular}

相关内容