我不是在寻找甘特图的计划。我在找一个上面有截止日期的日历。
你知道用乳胶做这件事最好的方法是什么吗?
谢谢
发布于 2010-01-26 13:14:15
如果你想要一个带圆圈的简单日历,你可以使用Tikz很容易做到。从他们的documentation
\begin{tikzpicture}
\calendar (mycal) [dates=2000-01-01 to 2000-01-31,week list];
\draw[red] (mycal-2000-01-20) circle (4pt);
\end{tikzpicture}给出
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
31在20周围有一个红色的圆圈。
手册中也有一些相当复杂的日历的例子。
https://stackoverflow.com/questions/2137597
复制相似问题