11

This is a follow up question to:

Gantt chart package

any ideas on how to rotate the gantt chart to make it appear sidewards? (i.e. rotate it 90 degrees?)

2 Answers2

13

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}
tdgunes
  • 151
FLW
  • 940
  • 8
  • 20
0

I use:

\begin{sidewaystable}[htbp] 
    ... 
\end{sidewaystable}
Romain Picot
  • 6,730
  • 4
  • 28
  • 58