17
0

Patch to remove annoying copyright symbols from Jstor exports in bib.

Signed-off-by: aaronshaw <aaron.d.shaw@gmail.com>
This commit is contained in:
aaronshaw 2012-03-13 15:10:52 -07:00 committed by Benjamin Mako Hill
parent de4773b84b
commit b30e702ef1

View File

@ -4,13 +4,15 @@ all: $(patsubst %.tex,%.pdf,$(wildcard *.tex))
pdf: all pdf: all
%.pdf: %.tex %.pdf: %.tex
recode -d u8..ltex < refs.bib > refs-processed.bib perl -p -e 's/©//' refs.bib > refs-cleaned.bib
recode -d u8..ltex < refs-cleaned.bib > refs-processed.bib
rubber -fd $< rubber -fd $<
clean: clean:
rubber -d --clean *.tex rubber -d --clean *.tex
rm -f *.tmp rm -f *.tmp
rm -f vc rm -f vc
rm -f refs-cleaned.bib
rm -f refs-processed.bib rm -f refs-processed.bib
viewpdf: all viewpdf: all