Latex 标记删除脚本(delcmdchanges.bash)不起作用

Latex 标记删除脚本(delcmdchanges.bash)不起作用

changes我在 latex 源代码中使用了包。要接受更改,我可以final在 tex 文件中使用它来删除输出 (PDF) 中的标签。如果我需要删除 latex 源代码中的标记,删除命令更改 脚本可用,但输出与输入相似,它不会删除乳胶中的标记。

我试过,sudo sh delcmdchanges.bash input.tex output.tex

例子:

\documentclass{article}
\usepackage{changes}
\begin{document}
\centerline{\sc \large A Simple Sample \LaTeX\ File}
\vspace{.5pc}
\centerline{\sc Stupid Stuff I Wish Someone Had Told Me Four Years Ago}
\centerline{\it (Read the .tex file along with this or it won't 
            make much sense)}
\vspace{2pc}
The first thing to realize about \LaTeX\ is that it is not ``WYSIWYG''. 
In other words, it isn't a \added{some text} word processor; 
\end{document}

答案1

将脚本放入 *.tex 文件所在的同一文件夹中。使脚本可执行。不要使用 sudo,只需打开终端,导航到该文件夹​​并尝试:

sh ./delcmdchanges.bash -i input.tex output.tex

或者

./delcmdchanges.bash -i input.tex output.tex

相关内容