I am trying to figure out how to "wrap" portrait-orientated text around a table that is rotated to landscape.
With a portrait-orientated table, this can be easily achieved using the -wrapfig- package and the wraptable environment, however, I cannot work out how to do this when the table needs to be ROTATED 90degrees (i.e., landscaped).
MWE
\documentclass[12pt]{report}
\usepackage{rotating}
\usepackage{lipsum}
\usepackage{booktabs}
\begin{document}
\lipsum[1]
\begin{sidewaystable}[h]
\footnotesize
\centering
\caption[]{\label{tab:summary}\centerline{\textbf{Summary Statistics---blah
blah}} \\ \footnotesize \lipsum[1]}
\begin{tabular}{lccccccccc}
\toprule
\multicolumn{10}{c}{Summary Statistics (stuff v stuff)} \\
\midrule
(1) & (2) & (3) & (4) & (5) & (6) & (7) & (8) & (9) & (10) \\
\\
& \multicolumn{4}{c}{Stuff} & \multicolumn{4}{c}{Stuff} & Stuff \\
\\
stuff & stuff & stuff & stuff & stuff & stuff & stuff & stuff & stuff &
stuff \\
\\
\midrule
\\
X & 123 & 123 & 123 & 123 & 123 & 123 & 123 & 123 & 123 \\
X & 123 & 123 & 123 & 123 & 123 & 123 & 123 & 123 & 123 \\
X & 123 & 123 & 123 & 123 & 123 & 123 & 123 & 123 & 123 \\
X & 123 & 123 & 123 & 123 & 123 & 123 & 123 & 123 & 123 \\
\bottomrule
\end{tabular}
\end{sidewaystable}
\end{document}
This produces a paragraph on page 1 and then the table on page 2. What I am trying to do is WRAP the text on page 1 AROUND the table on page 2 while preserving the orientation of the text.

sidewaystableis always on a new page (as far as I know). – Skillmon Oct 25 '17 at 06:30