在哪里可以找到如屏幕截图所示的时间表模板?

在哪里可以找到如屏幕截图所示的时间表模板?

我发现了一个非常漂亮的表格并想复制它,但是我找不到任何关于如何制作类似表格的信息:

我打算复制的附表

非常欢迎帮助,我很着急!

答案1

该包pgfgantt已在评论中提及,可能是绘制任何类型的定时计划最有用的包,还允许更新当前日期等。

然而,像您提出的表格这样的非常简单的方法,也可以用这样的非常简单的解决方案来创建:

\documentclass[10pt,border=3mm]{standalone}

\usepackage{booktabs,calc,xcolor}

\newcommand{\Heading}[1]{\multicolumn{1}{@{}c@{}}{#1}}
\newcommand{\timebar}[1]{\multicolumn{#1}{@{}p{#1cm}@{}}{\textcolor{cyan}{\rule[0pt]{#1cm}{10pt}}}}

\begin{document}
\begin{tabular}{@{}l@{}p{1cm}@{}p{1cm}@{}p{1cm}@{}p{1cm}@{}p{1cm}@{}p{1cm}@{}p{1cm}@{}}
    \toprule
    &\Heading{Jul}&\Heading{Aug}&\Heading{Sep}&\Heading{Oct}&\Heading{Nov}&\Heading{Dec}&\Heading{Jan}\\
    \midrule
    Data Analysis Model & \timebar{3} & & & & \\
    Development \& Validation & & \timebar{3} & & &\\
    Results' Discussion & & & & \timebar{2} &\\
    Thesis Writing & & \timebar{5} \\
    Preparation of Presentation & & & & & & \timebar{2}\\
    \bottomrule
\end{tabular}
\end{document}

带有甘特图形式的条形图的表格

相关内容