Currently I use a \mytodo macro
, which just calls \todo[inline]
:
\newcommand{\pbtodo}[1]{\todo[inline]{#1}}
But I'd like to call this macro \todo
. The simplest solution:
\renewcommand{\todo}[1][]{\todo{#1}}
unsurprisingly resulted in what I presume to be a stack overflow:
! TeX capacity exceeded, sorry [input stack size=5000].
Does anyone know a way to use the old \todo
macro in a redefinition?