pgfgantt 中的附加列

pgfgantt 中的附加列

我正在使用pfgantt包制作一些甘特图。目前,我在任务标签后写上了任务负责人。我希望在任务标签后有一列,其中包含所有任务的负责人。类似于

在此处输入图片描述

\documentclass[]{standalone}

\usepackage{pgfgantt}
\begin{document}

\begin{ganttchart}[
  hgrid,
  % vgrid,
  x unit=4pt,
  y unit title=0.5cm,
  y unit chart=0.6cm,
    time slot format=isodate,
    time slot unit= day,
    calendar week text={W\currentweek},
    % compress calendar,
    title/.append style={shape=rectangle, fill=black!10},
    title height=1,
    bar/.append style={fill=green!20},
    bar height=.6,
    bar label font=\normalsize\color{black},
    group/.append style={fill=green!20},
    group top shift=.6,
    group height=.3,
    group peaks height=.2,
%    bar incomplete/.append style={fill=cyan!40}
  ]{2020-01-01}{2020-03-10}
  \gantttitlecalendar{year, month=name, week=1} \\
    \ganttgroup{Group 1}{2020-01-02 00:00:00}{2020-03-05 00:00:00}\\
    \ganttbar[name=task1]{Task1 - Resp. Jon Plumber}{2020-01-02}{2020-01-07}\\
    \ganttmilestone[name=Mile.1]{Milestone1 - Resp. Alice Plumber}{2020-02-14}
    \end{ganttchart}

\end{document}

相关内容