Document Classes ⇒ Rotating and pdf
Rotating and pdf
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Rotating and pdf
Code: Select all
\documentclass{article}
\usepackage[english]{babel}
\usepackage{rotating}
\usepackage{blindtext}
\begin{document}
\Blindtext
\begin{sidewaystable}
\centering
\begin{tabular}{ccc}
a & b & c \\
\end{tabular}
\end{sidewaystable}
\Blindtext
\end{document}
Re: Rotating and pdf
It is fine if pdflatex is used, or if dvipdf is used, but I can't use either of those because I need some postscript-specific options.
Is there any to avoid the rotated page while using the dvips-ps2pdf route?