From b5c001975aabbcba5bf6c951cb62d8d0b0b56174 Mon Sep 17 00:00:00 2001 From: Juri Date: Sun, 25 Sep 2022 19:45:29 +0200 Subject: [PATCH] latexdiff: add page (#8509) --- pages/common/latexdiff.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages/common/latexdiff.md diff --git a/pages/common/latexdiff.md b/pages/common/latexdiff.md new file mode 100644 index 000000000..5068722aa --- /dev/null +++ b/pages/common/latexdiff.md @@ -0,0 +1,16 @@ +# latexdiff + +> Determine differences between two LaTeX files. +> More information: . + +- Determine changes between different versions of a LaTeX file (the resulting LaTeX file can be compiled to show differences underlined): + +`latexdiff {{old.tex}} {{new.tex}} > {{diff.tex}}` + +- Determine changes between different versions of a LaTeX file by highlighting differences in boldface: + +`latexdiff --type=BOLD {{old.tex}} {{new.tex}} > {{diff.tex}}` + +- Determine changes between different versions of a LaTeX file, and display minor changes in equations with both added and deleted graphics: + +`latexdiff --math-markup=fine --graphics-markup=both {{old.tex}} {{new.tex}} > {{diff.tex}}`