我用“sidewaystable”定义的任何表格。出现在创建的pdf文件的最后一页。我该如何解决这个问题?

\begin{sidewaystable}[h]
\caption{Blah Measurements}
\centering % centering table
\begin{tabular}{c c c c c c c c c c}
\hline\hline % inserting double-line

A & B & \multicolumn{3}{c}{C} & C Time + & D & \multicolumn{3}{c}{D Signal} \\
ID & ID & \multicolumn{3}{c}{Coordinates} & Time Diff. & Time & \multicolumn{3}{c}{Parameters} \\ [0.5ex]

\hline % inserts single-line
1 & 1 & 4415633.126837 & 482211.909079 & 939.450000 & 06:07:40 & 06:07:40 & -85 dBm & 6 dB & 5 dBm \\

\hline
\end{tabular}
\label{tab:combined}
\end{sidewaystable}
有帮助吗?

解决方案

您是否尝试使用 htbp 之类的东西来放置浮动对象?

\begin{sidewaystable}[htbp]
...
\end{sidewaystable}

其他提示

你可以尝试使用\ begin {table} [h!] - !将尝试告诉乳胶强制你的桌子到达确切的位置。我已经击中或错过了结果。

此外,使用float包,您可以使用大写H \ begin {table} [H]来防止表浮动。

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top