[Tex/LaTex] Page upside down

rotating

I have a quite wide table in my document, that I would like to display "rotated". Everything seems fine, but apparently there is some problem towards the end: when I try to print out (print to file) I get the rotated page upside down.

Is there a way to solve the issue?

(Latex->dvi2ps->ps2pdf->View PDF (I use Texmaker))

\documentclass[twoside,openright]{report}
\usepackage[]{rotating}
\usepackage[]{fancyhdr}

\fancyhead[RE,LO]{\fancyplain{}{\textbf{\textit{\leftmark}}}}
\fancyhead[LE,RO]{\fancyplain{}{\textbf{\thepage}}}
\fancyfoot[]{}

\pagestyle{fancyplain}

\begin{document}
Normal page.
\clearpage
\begin{sidewaystable}
\begin{tabular}{|c|c|c|c|}
\hline \textbf{Bla Bla Bla} & 01/01/2009 & 01/01/2010 & \\ 
\hline \textbf{Abcd efc} & Something something & Little bit longer description for something.\\ 
\hline 
\end{tabular} 
\caption{Something.}
\end{sidewaystable}
\clearpage
Another normal page.

\end{document}

Best Answer

You have two options to fix this behaviour.

  1. ps2pdf automatically rotates landscape-like pages during processing. Since that is the case with your sidewaystable page, this page is rotated in the display, and subsequently in print as well. Supplying the option distiller option -dAutoRotatePages=/None to Ghostscript should leave the landscape pages in their original portrait orientation.

  2. Use pdflatex directly. This circumvents the above requirement all together.