如何将“日历周文本”中的每周日期范围格式化为 1 - 6、7 - 13、14 - 20 等等?

如何将“日历周文本”中的每周日期范围格式化为 1 - 6、7 - 13、14 - 20 等等?

如果我使用这样的东西:

\ganttset{%
    calendar week text={%
        \small {\startday}
    }%
}

我可以按日期细分一周:

在此处输入图片描述

但我希望它显示一周的开始日期和结束日期。像这样:

在此处输入图片描述

谢谢

编辑:这是我使用的代码示例:

\ganttset{%
    calendar week text={%
        \small {\startday}
    }%
}

\noindent\resizebox{\textwidth}{!}{
    \begin{ganttchart}[
        x unit=2mm,
        time slot format=isodate,
        ]{2021-03-01}{2021-03-31}
        \gantttitlecalendar{month=name, week=1} \\
        \ganttbar{A}{2021-03-01}{2021-03-07} \\
        \ganttbar{B}{2021-03-08}{2021-03-14} \\
        \ganttbar{C}{2021-03-15}{2021-03-21} \\
        \ganttbar{D}{2021-03-22}{2021-03-28} \\
        \ganttbar{E}{2021-03-29}{2021-03-31} 
        ]
    \end{ganttchart}      
} 

相关内容