I lack both the time and interest to maintain and develop latexdiffcite further. Give me a holler if you want to take over.
latexdiffcite is a wrapper around latexdiff to make citations diff properly:
latexdiffcite is a wrapper around latexdiff which, before calling latexdiff, replaces (in temporary files!) citation commands such as \cite{...} with written-out formatted references. It does this by looking up references in a corresponding .bib file or .bbl file and formatting them according to a user-specifiable configuration. latexdiff will then properly mark changes in the citations. The citation format can be heavily customized to match what you are already getting from LaTeX/BibTeX.
latexdiff is required, but you of course already have that installed and working, right? :-)
Install with pip:
pip install latexdiffcite
To compare two .tex files on disk, use the file subcommand like this:
latexdiffcite file FILE_OLD FILE_NEW
To compare two revisions (commit hash, tag, branch, etc.) of a .tex file in a git repository, use the git subcommand like this:
latexdiffcite git FILE REV_OLD [REV_NEW] [FILE_NEW]
REV_OLDandREV_NEWcan be commit hashes, tags, branches, etc.REV_NEWis optional, and defaults toHEAD(the latest committed version).FILE_NEWis optional, and is used when the new filename/path is different than the old
For customization and advanced usage, see latexdiffcite.readthedocs.org.
