发布时间:2012-12-02 20:41:03
文章类别:TeX绘图
原文地址:http://blog.sina.com.cn/s/blog_5e16f1770102fd4y.html

QQ群:91940767/145316219/141877998/80300084/194770436
淘宝店:http://latexstudio.taobao.com
技巧续篇:http://latexstudio.net/
常见数学公式问题集下载

中文名称:甘特图
英文名称:Gantt chart
定义: 一种按照时间进度标出工作活动,常用于项目管理的图表。【选自:百度百科】
甘特图主要用于项目计划制定,那么如何用tikz来绘制甘特图呢?
可以看pgfgantt包,地址:http://www.ctan.org/tex-archive/graphics/pgf/contrib/pgfgantt
几个样图如下:
LaTeX技巧649:Tikz绘制甘特图 LaTeX技巧649:Tikz绘制甘特图
另外,Martin Kumm开发了一个Gantt的包,下载地址:http://www.martin-kumm.de/tex/gantt.sty
演示样例:
选自:http://www.martin-kumm.de/tex_gantt_package.php
效果图:
LaTeX技巧649:Tikz绘制甘特图

代码:
\documentclass{article}

\usepackage{tikz}
\usepackage{gantt}

\begin{document}
\begin{gantt}{10}{12}
\begin{ganttitle}
\numtitle{1}{1}{12}{1}
\end{ganttitle}
\ganttbar{a task}{0}{2}
\ganttbarcon{a consecutive task}{2}{4}
\ganttbarcon{another consecutive task}{8}{2}
\ganttmilestone[color=cyan]{Milestone with color!}{4}
\ganttbar{another task}{2}{2}
\ganttbar[color=cyan]{another coloured task}{4}{4}
\ganttbar{another task}{4}{2}
\ganttcon{4}{5}{4}{7}
\ganttmilestonecon{A connected Milestone}{7}
\ganttbarcon{another consecutive task}{8}{2}
\end{gantt}
\end{document}


效果图:
LaTeX技巧649: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}


在一个就是ContTeXt绘制甘特图,可以看这里:http://wiki.contextgarden.net/Gantt_charts


点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部