매우 긴 간트 차트를 연속된 선으로 나누는 방법은 무엇입니까?

매우 긴 간트 차트를 연속된 선으로 나누는 방법은 무엇입니까?

1년이 넘는 장기간의 프로젝트에 대한 간트 차트가 필요합니다.

다음을 고려하세요 MWE:

\documentclass[12pt]{article}
\usepackage[margin=1.0in]{geometry}
\usepackage{pgfgantt}
\usepackage{pdflscape}
\usepackage{capt-of} %caption outside floats
\begin{document}
    \begin{landscape}
        \captionof{figure}{My Timeline}
        \begin{tikzpicture}
        \begin{ganttchart}[%%%
        hgrid,
        vgrid,
        x unit=4mm,
        time slot format=isodate,
        title/.append style={shape=rectangle, fill=black!10},
        title height=1,
        bar/.append style={fill=green!70},
        bar height=.6,
        bar label font=\normalsize\color{black!90},
        group top shift=.6,
        group height=.3,
        group peaks height=.2,
        ]{2017-04-01}{2018-08-01}
        14
        \gantttitlecalendar{year, month, day} \\
        \ganttbar{Task}{2018-05-15}{2018-05-25}                    
        \end{ganttchart}
        \end{tikzpicture}
    \end{landscape}
\end{document}

모든 목표 기간을 포괄하기 위해 간트 차트를 여러 연속 선으로 나눌 수 있는 방법이 있습니까?

관련 정보