\todo in 'final' is still being displayed
Closed this issue · 3 comments
pierreganty commented
Even when compiled in [final] mode (\usepackage[final]{commenting}) \todo commands are still partially rendered. They don't show up as coloured text in a box but as regular text.
bordaigorl commented
This is weird, I cannot reproduce the issue...could you provide a minimal document showing the problem? Could it be a clash with other packages you are using?
pierreganty commented
\documentclass[runningheads, envcountsame, a4paper]{llncs}
% Put final and no comments is displayed
\usepackage[final]{commenting}
\declareauthor{pg}{Pierre}{red!90!black}
\title{Title}
\author{}
\institute{}
\pagestyle{plain}
\begin{document}
\maketitle
\section{Introduction}
\label{sec:intro}
blabla
\todo[pg]{I should be hidden}
\end{document}
bordaigorl commented
There is a bug in how \todo
processes its arguments in final mode.
I'll release a fix in a minute.
Thanks a lot for the feedback!