如何优化边距为 1cm 时 todonote 的位置和跟踪更改

如何优化边距为 1cm 时 todonote 的位置和跟踪更改

我正在使用 todonote 和 changes 包,但由于我的模板边距很小,所以几乎看不到它们。有没有办法将这些注释放在文本下方?谢谢

在此处输入图片描述

\documentclass{article}
\usepackage{todonotes}
\usepackage{changes}
\usepackage[margin=1cm]{geometry}
\usepackage{lipsum}

\begin{document}
\definechangesauthor{Rev1}
\definechangesauthor{Rev2}
\todo[inline]{Reviewer 1 suggestion: Add more details to the experimental setup.}

\section{Introduction}
\lipsum[1-5] In this paper, we present \added[id=Rev1,comment={Added more details to the experimental setup.}]{an improved experimental setup}
for our study.

\section{Methodology}
We conducted a \deleted[id=Rev1,comment={Removed redundant information.}]{comprehensive literature review} to gather data.\lipsum[1-5]

\section{Results}
The \replaced[id=Rev2,comment={Reworded for clarity.}]{result}{outcome} is consistent with our expectations.

\end{document}

相关内容