I am using a counter, like so:
\newcounter{sectionnumber}
\setcounter{sectionnumber}{0}
\newcounter{courseday}
\newcommand{\nextsection}{HW/Quiz \stepcounter{sectionnumber}\arabic{sectionnumber}}
\newcommand{\samesection}{Section \arabic{sectionnumber}}
to propagate section numbers in my course calendar. However, textbook sections are numbered. 1.1, 1.2, 1.3, 2.1, 2.4, ect. Worse, I may want to cover them out of order and maybe throw an appendix in there.
How can I define a list of sections and then have a counter enumerate this list in order?
