开发者

Rotated table in Latex appears at the end of the file

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}


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

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


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

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


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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜