准备工作:Latexdiff从安装到使用-非常详细的整理(2024/2/19更新-解决找不到Package Manager问题)-CSDN博客
latexdiff需要配置perl环境,但如果从官网安装perl会报各种各样的错误
比如:
Can’t locate Algorithm/Diff.pm in @INC (you may need to install the Algorithm:: D iff module)
给的解决方案是
perl -MCPAN -e "install Algorithm::Diff"
但之后还会报错
'YAML' not installed, will not store persistent state
因此,我们可以这样
从anaconda中找到perl
比如:
conda install conda-forge::perl
成功!