表格跳过部分?

表格跳过部分?

我有一个主节和 5 个子节。其中一个子节的表格无法放在半页内,因此需要放在下一个子节中。但是,表格跳过了所有其他子节!!我该如何解决这个问题?

图片如下:

注:(该表应位于 1.4.2 小节下)

在此处输入图片描述

使用的代码:

\begin{table}[h]
\centering
\caption{Resources}
\label{resource}
    \begin{tabular}{|l |l |p{10cm}| }
.
.
.
    \hline
    \end{tabular}
\end{table}

答案1

根据 Werner 的建议和以下两个问题:

表格跳过部分?

如何影响 LaTeX 中图形和表格等浮动环境的位置?

我认为您可以尝试使用:

\documentclass{article}

\usepackage{float}

\begin{document}

\begin{table}{H}
\centering
\caption{Resources}
\label{resource}
    \begin{tabular}{|l |l |p{10cm}| }
        a & b & c\\
                    \hline
    \end{tabular}
\end{table}

\end{document}

相关内容