旋转甘特图

旋转甘特图

这是一个后续问题:

甘特图包

关于如何旋转甘特图以使其侧面显示,有什么想法吗?(即旋转 90 度?)

答案1

使用横向选项来翻页,像这样:

 \usepackage{lscape}
 \begin{document}
    \begin{landscape}
    ...your Gantt-Chart here
    \end{landscape}
 \end{document}

要顺时针旋转,您需要使用rotating包:

  \usepackage{rotating}
  \begin{document}
     \begin{rotate}{270}
        ...your Gantt-Chart here
     \end{rotate}
  \end{document}

答案2

我用:

\begin{sidewaystable}[htbp] 
    ... 
\end{sidewaystable}

相关内容