I'd like to use LaTeX to write a journal. It would be in most respects like a regular book, but with dated instead of numbered chapters. For example, instead of:
- Chapter 1 - Project Setup
- Chapter 2 - Beginning Experiments
I'd like:
- November 15 2020 - Project Setup
- November 16 2020 - Beginning Experiments
This does not seem like a typical setup for LaTeX and I cannot find any mention of LaTeX used in this way.
How do I go about configuring LaTeX to do this?
Clarifying what I am hoping to achieve. As in the question title, I'd like to have chapters in this document, but instead of numbered chapters, have dates. So, for a regular book chapter that looks like the following:
I'd like to change "Chapter 1" to say "November 15, 2020", and same for subsequent chapters. Then in the table of contents, instead of:
the numerals "1" and "2" would instead be replaced with the dates themselves.




titlesecpackage and its\titleformatcommand. – Bernard Nov 15 '20 at 14:23\section{November 15 2020 - Project Setup}
some text
\section{November 16 2020 - Beginning Experiments}
some more text
\end{document}`
– leandriis Nov 15 '20 at 14:26