[Tex/LaTex] Package FiXme doesn’t produce output

fixme

I am using fixme for the first time. After reading the pkg documentation and this question, I was expecting the package to output something of the PDF page, but it doesn't. The only thing I see is "some thing" and the page number.

\documentclass{article}

\usepackage{fixme}

\begin{document}
    some thing\fxnote{fix me please}

    \listoffixmes
\end{document}

Best Answer

based on moewe's comment to the question


As it is stated in the documentation in ยง 3.4, "By default, FiXme is in final mode (LATEX itself behaves that way).", this is why we need to tell FiXme to go into draft mode.

\documentclass{article}

\usepackage{fixme}
\fxsetup{status=draft} % <====== add this line

\begin{document}
    some thing \fxnote{fix me please}

    \listoffixmes
\end{document}
Related Question