Latex 中的旋转表出现在文件末尾

发布于 2024-08-08 20:54:08 字数 700 浏览 2 评论 0原文

我用“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}

Any table I define with "sidewaystable" appears at the last page of created pdf file. How can I solve this?

\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}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

梦亿 2024-08-15 20:54:08

您是否尝试过使用 htbp 之类的方法来放置浮动对象?

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

Have you tried the something like htbp for the placement of the float object?

\begin{sidewaystable}[htbp]
...
\end{sidewaystable}
卸妝后依然美 2024-08-15 20:54:08

只需在 \begin{sidewaystable} 之前使用 \clearpage \newpage 并在 \end{sidewaystable} 之后使用 \clearpage 即可。

它无需任何浮点数即可工作,例如 H、h!、htpb 等。

Just use \clearpage \newpage before \begin{sidewaystable} and \clearpage after the \end{sidewaystable}..

It works without any floats like H, h!, htpb, etc.

唔猫 2024-08-15 20:54:08

你可以尝试使用 \begin{table}[h!] -- the !会尝试告诉乳胶强制你的桌子进入确切的位置。我的结果有好有坏。

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

you can try and use \begin{table}[h!] -- the ! will try and tell latex to force your table into the exact spot. I've had hit or miss results.

Also, with the float package, you can use a capital H \begin{table}[H] to keep your table from floating.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文