防止在 todonote 后出现分页符

防止在 todonote 后出现分页符

我使用软件包todo中的命令todonotes插入边注。我使用它们来跟踪单个章节的状态。

LaTeX 经常在待办事项注释后添加分页符,这看起来很奇怪,而且令人困惑。我该如何避免这种情况?

梅威瑟:

\documentclass[12pt,a4paper]{article}
\usepackage{todonotes}
\usepackage{blindtext}
\begin{document}
    \section{Introduction}
    \blindtext[2]
    
    xxx
    
    xxx
    
    xxx
    
    \blindtext
    
    \section{My Section}
    \todo[noline]{needs rework}
    
    \blindtext
    
\end{document}

截屏

相关内容