5

我需要创建一个日期为 19 世纪的甘特时间线。任何人都可以推荐一个可以处理这个问题的程序吗?

4

3 回答 3

6

由于您使用gantt.sty对其进行了标记,因此这是此页面中使用的一种方法: A LaTeX package for drawing gantt plots using pgf/tikz

在此处输入图像描述

\documentclass{article}

\usepackage{gantt}
\usepackage{pdflscape}

\begin{document}
  \begin{landscape}
  \scalebox{0.8}{
  \begin{gantt}[xunitlength=0.5cm,fontsize=\small,titlefontsize=\small,drawledgerline=true]{10}{48}
    \begin{ganttitle}
      \titleelement{2009}{7}
      \numtitle{2010}{1}{2012}{12}
      \titleelement{2013}{5}
    \end{ganttitle}
    \begin{ganttitle}
      \numtitle{6}{1}{12}{1}
      \numtitle{1}{1}{12}{1}
      \numtitle{1}{1}{12}{1}
      \numtitle{1}{1}{12}{1}
      \numtitle{1}{1}{5}{1}
    \end{ganttitle}
    \ganttbar{task 1}{2}{17}
    \ganttgroup{a group of tasks}{6}{18}
    \ganttbar{task 2}{5}{10}
    \ganttbar[pattern=crosshatch,color=blue]{task 3}{15}{3}
    \ganttbar{task 4}{20}{3}
    \ganttcon{15}{4}{20}{6}
    \ganttbar{task 5}{15}{5}
    \ganttbarcon[color=red]{task 6}{20}{5}
    \ganttbarcon{task 7}{30}{5}
  \end{gantt}
  }
  \end{landscape}
\end{document}

类似的方法pstricks由 提供pst-gantt

于 2012-05-24T21:39:00.610 回答
2

在此处输入图像描述 甘特图

我很久以前一直在使用 GanttChart,它非常适合简单的项目调度(如果这是你想要的)。它仍然处于活动状态并得到维护。它基于 Java,也可以在 Linux 上运行。

项目网页为:GanttProject.biz

以及最新版本的下载页面(截至撰写时为 2.5.2)

于 2012-05-23T11:20:59.317 回答
1

Openproj can help you. But depends what you want, it doesn't work because it's prepared for Windows. Another simple program that you can use is called "Planner". That it's just for Linux.

于 2012-05-22T15:18:01.953 回答