diff options
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 |