diff options
| author | Fuwn <[email protected]> | 2023-03-17 22:29:17 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-03-17 22:29:17 -0700 |
| commit | c73bb2f0de505c3aa10fca3fa10878723dfc1585 (patch) | |
| tree | fb59856a1b3548bbb15f6d0d737950ae7c56b9f2 /src/index.tex | |
| parent | fix(static): create html directory on build (diff) | |
| download | wri_350_documentation_log_assignment-main.tar.xz wri_350_documentation_log_assignment-main.zip | |
Diffstat (limited to 'src/index.tex')
| -rw-r--r-- | src/index.tex | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/index.tex b/src/index.tex index 117f87c..02b007b 100644 --- a/src/index.tex +++ b/src/index.tex @@ -1,6 +1,17 @@ +\maketitle + +\newcounter{firstOfTheMonth} + \foreach\Year in {2023,...,2023}{ - \foreach\Month in {January,February,March,April,May}{ + \foreach\Month in {January,February,March}{ + \setcounter{firstOfTheMonth}{0} + \foreach\Day in {1,...,31}{ + \ifnum \value{firstOfTheMonth}=0 + \chapter{\Month} + \setcounter{firstOfTheMonth}{1} + \else \fi + \IfFileExists{\Year/\Month/\Day}{ \openin\mysource=\Year/\Month/\Day.tex |