Last active
September 9, 2025 12:56
-
-
Save dee-me-tree-or-love/56babedf1439f8e8b724b0e7065177d8 to your computer and use it in GitHub Desktop.
π Simple todo's and author utilities for annotating LaTeX
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| % Creates a basic in-text todo note with a margin callout mark. | |
| % | |
| % Arguments: | |
| % (required) - todo text | |
| % (optional) - mark symbol, default: $\odot$, provide an empty value to skip. | |
| % | |
| % Examples: | |
| % \todoM{do the dishes before starting the next paragraph} | |
| % \todoM[$\star$]{mention this later, mark with a star} | |
| % \todoM[]{recall this, even without a margin mark} | |
| % | |
| \newcommand{\todoM}[2][$\odot$]{ | |
| {\marginpar{{\color{purple} #1}}} | |
| {\color{purple}\textbf{TODO:} #2} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment