mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 06:22:07 +02:00
latexdiff: add page (#8509)
This commit is contained in:
parent
2652667b8e
commit
b5c001975a
1 changed files with 16 additions and 0 deletions
16
pages/common/latexdiff.md
Normal file
16
pages/common/latexdiff.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# latexdiff
|
||||
|
||||
> Determine differences between two LaTeX files.
|
||||
> More information: <https://ctan.org/pkg/latexdiff>.
|
||||
|
||||
- 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}}`
|
Loading…
Add table
Reference in a new issue