This question led to a new package:
scrjrnl
I'm searching for packages to write a daily devotional such as this one (Click "Search inside this book" and see in the end of the preview for example). I could not find a suitable package on the CTAN to do that.
I'm thinking that I could use a book or scrbook class and either redefine or encapsulate:
\chapterfor each month, resetting a counter for every day;\sectionfor every day of the month, using and incrementing the counter.
What would be the best/easiest approach in this case?
- Making a
devotionalclass to replacebook; - Writing macros to encapsulate
\chapterand\section; - Redefining
\chapterand\sectionor playing with definitions used inside\chapterand\sectioncalls inbookorscrbook; - Any other enlightened suggestion...
The usage I'm thinking about would look like this:
\documentclass{scrbook} % or \documentclass{devotional}
\begin{document}
\tableofcontents
\month{January} % Set counter for month of January
\day*{} % Set a new day -- January 1, do not list in toc
\begin{verse}{Genesis 3.4}
% contents of the verse
\end{verse}
% commentary
% commentary
\begin{prayer}
% contents of prayer
\end{prayer}
\day*{} % Set a new day -- January 2, do not list in toc
% day contents
% etc.
\end{document}