My sidewaystable is always placed on a separate page! How do I make it appear exactly where it is defined? Is that possible?
- text
- sidewaystable
- page break
- text
I've done something like this:
\begin{document}
\section{My Table}
\paragraph{}
Please print my table on this page!
\begin{sidewaystable}[htbp]
\centering
\captionsetup{justification=centering}
\caption{My Table}
\begin{tabular}{p{2.3cm}|p{2.3cm}p{2.3cm}}
\hline
A & B & C \\
\hline
1 & 2 & 3 \\
\hline
\end{tabular}
\label{tab:mytable}
\end{sidewaystable}
\end{document}

sidewaystableenvironment. Float positioning mainly depends on things such as page size that can not be deduced from an incomplete fragment – David Carlisle Nov 18 '14 at 20:30rotatingpackage.texdoc rotatingshows section 2.4 on float positioning which says that it only supports float pages not floats on a text page. – David Carlisle Nov 18 '14 at 20:40