I am new user of LaTeX and currently I am writing a thesis in which I have to add large table. I successfully did it through below written code. But, as I added my table horizontally, In the PDF, the user has to rotate the page in order the view it. Is other any way to change orientation of only this page, not the table?
\begin{sidewaystable}
\centering
\begin{table}[H]
\centering
\caption{ yy}
\label{xx}
xyz
\end{tabular}
\end{table}
\end{sidewaystable}
pdflscapepackage. Try:\documentclass{article}\usepackage{pdflscape}\begin{document}hello world\begin{landscape}hello world\end{landscape}\end{document}. – Ruben Jan 03 '17 at 15:15\centerings and atableinside yoursidewaystable. You intended something like:\begin{sidewaystable}\centering\begin{tabular}{c}xyz\end{tabular}\caption{yy}\label{xx}\end{sidewaystable}, right? (and of course invoking therotatingpackage in the preamble) – Ruben Jan 03 '17 at 15:20