Question

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}
Was it helpful?

Solution

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

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

OTHER TIPS

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top