
내 프로젝트는 6년 동안 진행되며 세로 형식으로 A4 페이지 너비로 여전히 읽을 수 있는 간트 차트를 구현하고 싶습니다.
간트 차트의 월 라인에서 레이블(숫자)을 제거하고 차트의 빈 셀만 유지하고 싶습니다 pgfgantt
.
\documentclass{article}
\RequirePackage{pgfgantt}
\begin{document}
\begin{ganttchart}[time slot format=isodate-yearmonth,
vgrid={dotted,draw=none,draw=none}, %hgrid=true,
x unit=0.22cm, % NOTE: width for a single month
y unit chart = 0.6cm, bar height=0.6,
y unit title = 0.5cm, title height=1,
include title in canvas=false,
time slot unit=month
]{2024-09}{2030-09} %project duration
% temporal marks
\gantttitlecalendar[title/.style={fill=black!30,draw=black}]{year} \\
\gantttitlecalendar[title/.style={fill=black!20,draw=black}]{month} \\
\end{ganttchart}
\end{document}