页脚上方的表格和文本

页脚上方的表格和文本

当我尝试在下面的代码中放置表格时,文本或表格会超出页脚。并且该代码下方的文本不会出现在下一页上。

有人知道如何纠正它吗?

 Text before table.....blablabla........This text gets over the footer or 
 sometimes is the table that gets over the footer... either way, once it 
 gets over the footer the rest of the table or text does not go to the next 
 page

\begin{table}[htb]
    \centering
    \caption{Table name.}
    \label{tab:}
    \begin{tabularx}{\textwidth}{ X  X  X }
       \toprule
        Info & Info & Info \\
        \midrule
        Info & Info & Info \\
        Info & Info & Info \\
        \bottomrule
    \end{tabularx}
\end{table}

\subsection{Title}
\label{sec:}

Tex, blablablablablabla - This text just disappears..... 

相关内容