Latex
Compare different commits
### find help
run-latexdiff --help (or -h)
### running example
run-latexdiff --old OLD:FILE --new NEW:FILE --diff diff.tex
run-latexdiff -o f126:ms/old.tex -n jafo12:ms/new.tex -d ms/diff.tex
Latex Cheat Sheet
Latex to word
```
## Latex Math
[Latex Symbols](http://www.rpi.edu/dept/arc/training/latex/LaTeX_symbols.pdf)
### Degree symbol in LaTeX
How to print the degree symbol in LaTeX? (As in "10 degrees C".)
- In plain TeX and LaTeX 2.09:
$10\,^{\circ}{\rm C}$
$$10\,^{\circ}{\rm C}$$
- In later versions of LaTeX:
$4\,^{\circ}\mathrm{C}$ ```
$$10\,^{\circ}\mathrm{C}$$