I'm trying to rotate a table by 90 degrees in my document. However, the sidewaystable environment doesn't quite do what I'm looking for. I need the table to be displayed in its rotated 90 degrees position, on a portrait-oriented page when compiled using latex -> ps -> pdf. This is for a journal submission, and the journal insists that all documents, which it generated from your tex file, appear on a portrait-oriented page.
Any help would be much apprectiated. Can I put the table in a box environment and rotate the box by 90 degrees?
Here's the minimal code
Code: Select all
\documentclass{article}
\usepackage{supertabular,caption,rotating}
\begin{document}
...
\begin{table}[htp]
\begin{center}
\caption{a description}
\begin{tabular}{c c c c c}
first col & second & third & fourth & fifth \\
\end{tabular}
\end{center}
\end{table}
...
\end{document}