I'm writing my degree thesis in LaTeX and I have some chapters and sections which I didn't write yet.
Is there any way to put a tag to specify that there is a TO DO there so I remember to fill it ? (I mean something similar to @TODO in Java comments)
It would be great if LaTeX compiler raises a warning in the logs if it has found that tag.

todonotespackage. http://www.tex.ac.uk/tex-archive/macros/latex/contrib/todonotes/todonotes.pdf You add todo entries with\todo{}and you can create a todolist with\listoftodosand you can customize some parameters accordingly to the documentation. – Ludovic C. Jul 14 '13 at 22:38vimandgedit(to cite the two editors I use most often, but I'm sure many others as well) can both highlight TeX comments like%TODO: include plot of y vs x here, so that they'll show up quite clearly in your source document, but not in the compiled version. – Tyler Jul 17 '13 at 00:35\PackageWarning{Warning}{TODO: Don't forget to do me.}Don't forget to do me.to get the warning in the log and in the output. No fancy package needed. – SpeedCoder5 Apr 24 '23 at 17:31