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}
sidewaystableto rotate the table by 90 degrees. However, it could be a setting on your printer when duplexing? If you create a 3-page document without thesidewaystable, does the second page still get printed upside down? I say printer, but I think it would be the same if you were to "save to file." – Werner Oct 15 '11 at 15:50pdflatex, as opposed tolatex->dvips->ps2pdf. Does this solve your problem? – Werner Oct 15 '11 at 17:17something.\\misses a&:something. & \\