为什么 PGFgantt 会因尺寸过大而遇到困难?

为什么 PGFgantt 会因尺寸过大而遇到困难?

我有以下代码:

\documentclass{standalone}

\usepackage{pgfgantt}

\begin{document}

\begin{ganttchart}[
    today label={Heute},
    today={\the\year-\the\month-\the\day},
    time slot format=isodate,
    progress=today,
    x unit=0.1mm,
    ]{2022-07-27}{2023-08-10}
    \ganttgroup{My Action}{2022-07-27}{2023-08-09}
\end{ganttchart}
\end{document}

并产生:Dimension too large. ...ttgroup{My Action}{2022-07-27}{2023-08-09},这最初让我想到pgfgantt 中的尺寸太大,但如您所见,我减少了,x unit=0.1mm它并没有改变。生成的图像还可以,除了进度的缩放,它不匹配: 在此处输入图片描述

相关内容