latexdiffcite icon indicating copy to clipboard operation
latexdiffcite copied to clipboard

Options of latexdiff

Open mlep opened this issue 6 years ago • 3 comments

I could not make citations diff properly with latexdiff. So I am considering using latexdiffcite instead. To make the diff between 2 files, I was using latexdiff with the option --math-markup=whole . I would like to use latexdiffcite with this option. Is is possible? How?

I have latexdiffcite 1.0.6

mlep avatar Jul 30 '18 13:07 mlep

Unfortunately it's been several years since I used (and stopped maintaining) latexdiffcite, so I can't remember if it's possible to pass arguments through latexdiffcite to latexdiff. If it's not already possible, I won't be able to add it.

cmeeren avatar Jul 30 '18 14:07 cmeeren

Thank you for your prompt reply!

mlep avatar Jul 30 '18 14:07 mlep

Perhaps try changing L826 from

process = subprocess.Popen(args, stdout=f, stderr=subprocess.PIPE)

to

process = subprocess.Popen(' '.join(args), shell=True, stdout=f, stderr=subprocess.PIPE)

See this problem on Stack Overflow.

lqxyz avatar Mar 01 '21 22:03 lqxyz