我一直在研究一个个人模板,以备某些期刊没有模板时使用。顺便说一句,我发现easyReview 软件包和命令\setreviewsoff
还是\setreviewson
挺有用的。
然而,当我准备文档时,这个命令\setreviewsoff
对我不起作用;即使是在一个最小的文件中(按照用户手册):
\documentclass{article}
\usepackage{easyReview}
%\setreviewson
\setreviewsoff
\begin{document}
\comment{The text to comment}{the comment}
\end{document}
你们有遇到过同样的问题吗?也许我没有把命令放在正确的位置?我已经尝试过了\begin{document}
答案1
说实话,我不明白 编码背后的原理easyReview
。它的一些宏(包括\comment
)对开关\setreviewson
/不敏感\setreviewsoff
。例如,\comment
定义为
\newcommand{\comment}[2]{\highlight{#1}\todo[inline]{#2}}
对于我来说,文档如何获得所声称的输出是一个谜。
考虑到代码easyReview
大约只有十几行,您可以考虑制作自己的版本。或者这里有一个快速解决方案:
\documentclass[twocolumn]{article}
\usepackage{easyReview}
\renewcommand{\comment}[2]{\ifistoreview\highlight{#1}\todo[inline]{#2}\else#1\fi}
\begin{document}
The \comment{text}{the comment} to comment.
\setreviewsoff
The \comment{text}{the comment} to comment.
\end{document}