[Tex/LaTex] Revise scientific paper using package changes

articlechangestrackchanges

I am writing a scientif paper (Patter recognition Letter template) and for the revision, I am using the package changes. In the below code, the list of changes are not generated: I used texStudio and texShop.

 \documentclass{article}

\usepackage{changes}
\usepackage{lipsum}% <- For dummy text
\definechangesauthor[name={R G}, color=red]{rg}
\setremarkmarkup{(#2)}


    \begin{document}
    \lipsum[2-3]

    I eat \added[id=rg,remark={we need a preposition an}]{an} apple
    I buy \deleted[id=rg,remark={don't use a with plural}]{a} books.
    I buy \replaced[id=rg, remark={be positive}]{nice}{bad} car.


    \listofchanges[style=<list|summary>]
    \end{document}

Best Answer

A wild guess: are you using the final option?

\documentclass[
%   final,
]{elsarticle}

\usepackage{changes}
\definechangesauthor[name={R G}, color=red]{rg}
\setremarkmarkup{(#2)}

\begin{document}

I eat \added[id=rg,remark={we need a preposition an}]{an} apple
I buy \deleted[id=rg,remark={don't use a with plural}]{a} books.
I buy \replaced[id=rg, remark={be positive}]{nice}{bad} car.

\listofchanges[style=<list|summary>]

\end{document}

enter image description here

Related Question