texstudio 命令 \comment \alert 和 \add

texstudio 命令 \comment \alert 和 \add

新版 texstudio (4.0.1) 在工具栏右上方添加了三个新按钮,按下后会在 texfile 中插入\alert{}\comment{}{}和,但编译时会出错。\add{}Undefined control sequence. \comment

这些按钮有什么用?我是不是漏掉了什么包?

编辑: 根据评论所建议,我在这里添加了一个代码示例:

\documentclass{article}
\usepackage{amsmath}
\pagestyle{empty}
\begin{document}
    some crazy text what so ever \\
    $ a = b + c $
    
    \comment{and after the formula}{gg zz uu}
    \alert{some text}

\end{document}

答案1

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{easyReview} % for \comment, \alert, etc.
\usepackage{soulutf8} % for accented letters
\begin{document}
    \comment{and after the formula}{gg zz uu}
    \alert{some text őőőő}
\end{document}

相关内容