
내 작업 주는 토요일부터 금요일 밤까지이며 주기 + 주 번호를 기준으로 모든 일정을 계획합니다. 각 주기는 정확히 4주로 구성됩니다(작년에는 슬라이드를 수정하기 위해 윤주를 가졌습니다...). 2주기의 4주차 종료일은 2016년 2월 26일입니다.
나는 프로젝트와 함께 이러한 세부 사항을 보여주는 간트 차트를 만들려고 합니다.대개일주일 전체에 속합니다(토요일부터 금요일까지 진행되지만 30%는 여러 주에 걸쳐 있고 한 주의 중간에 끝나거나 시작됩니다. 이는 불규칙한 특성을 고려하여 계획을 세우는 데 특히 중요합니다.
또한 토요일과 일요일은 녹색으로 표시하고 금요일은 빨간색으로 표시하려고 합니다. 스타일은 충분하지만 아무것도 일치하지 않으며 매달 재정렬하는 것이 고통스러울 것입니다. 다음 달에 이를 업데이트해야 합니다. 또한 이 작업 예제를 다음 위치에 저장했습니다. https://www.overleaf.com/read/cfcjfvcxxcqn
\documentclass[12pt,letterpaper]{article}
\usepackage[a4paper,landscape,margin=3cm]{geometry}
\usepackage{pgfkeys,pgfcalendar}
\usepackage{pgfgantt}
\usepackage{advdate}
\usepackage{scrdate}
\usepackage{datenumber}
\begin{document}
\begin{ganttchart}[
time slot format=isodate,
hgrid=true,
vgrid={ {*{3}{blue, dashed}}, *2{red}, *1{green}, *{5}{blue, dashed}},
today={\the\year-\the\month-\the\day}
]{2016-01-26}{2016-02-26}
\gantttitlecalendar{month=name} \\
\gantttitle{C.3}{3}
\gantttitle{C.4}{26}\\
%
\gantttitle{W 1}{6}
\gantttitle{W 2}{7}
\gantttitle{W 3}{7}
\gantttitle{W 4}{7} \\
%
\ganttbar{Item 1}{2016-01-30}{2016-02-05} \\
\ganttbar{Item 2}{2016-01-30}{2016-02-05}
\ganttnewline[thick, blue]
\ganttbar{Item 3}{2016-02-06}{2016-02-12} \\
\ganttbar{Item 4}{2016-02-06}{2016-02-12}
\ganttnewline[thick, blue]
\ganttbar{Item 5}{2016-02-13}{2016-02-19} \\
\ganttbar{Item 6}{2016-02-13}{2016-02-19}
\ganttnewline[thick, blue]
\ganttbar{Item 7}{2016-02-20}{2016-02-26}\\
\ganttbar{Item 8}{2016-02-20}{2016-02-26}
\end{ganttchart}
\end{document}