长而宽的子表

长而宽的子表

我不是 LaTeX 专家。我用它来写论文。这是我的问题。

我有一组表格和子表格,它们非常宽且长,因此我使用

\begin{table}[H]
    \begin{subtable}[]{\textwidth}
        \begin{center}
            \begin{tabularx}{\textwidth}{|ll|X|}
                ..................................
                .... Very long and wide table ....
                ..................................
            \end{tabularx}
        \end{center}
        \caption{Subtable 1 Caption}
        \label{tbl:subt1}
    \end{subtable}

    \begin{subtable}[]{\textwidth}
        \begin{center}
            \begin{tabular}{|ll|l|}
            ..................................
            .... Very long and wide table ....
            ..................................
            \end{tabular}
        \end{center}
        \caption{Subtable 2 caption}
        \label{tbl:subt2}
    \end{subtable}
\caption{Global table caption}
\label{tbl:tbl}
\end{table}

我使用 tabularx 让列容纳单元格中的文本。我得到的只是第一个子表的第一部分,从某个页面开始一直到页面的最末端(溢出)。

我该如何解决这个问题?我一直在思考 subfloat 包和其他包,但还是没能解决!

提前谢谢大家!

相关内容