This is a follow up question to:
any ideas on how to rotate the gantt chart to make it appear sidewards? (i.e. rotate it 90 degrees?)
This is a follow up question to:
any ideas on how to rotate the gantt chart to make it appear sidewards? (i.e. rotate it 90 degrees?)
Use the landscape-option to turn your page, like this:
\usepackage{lscape}
\begin{document}
\begin{landscape}
...your Gantt-Chart here
\end{landscape}
\end{document}
To rotate it clockwise, you need to use rotating package:
\usepackage{rotating}
\begin{document}
\begin{rotate}{270}
...your Gantt-Chart here
\end{rotate}
\end{document}
I use:
\begin{sidewaystable}[htbp]
...
\end{sidewaystable}
\usepackage{lscape}to makelandscapeenvironment work. http://www.ctan.org/pkg/lscape – texenthusiast Apr 01 '13 at 15:33