Patch to remove annoying copyright symbols from Jstor exports in bib.
[latex_mako] / paper_template / Makefile
index d4bbda0fc4e4c05ced81ab89a19db22127b2b5ab..b219b7283a5830c3bb8103e001bac6009333ba00 100644 (file)
@@ -4,12 +4,16 @@ all: $(patsubst %.tex,%.pdf,$(wildcard *.tex))
 pdf: all
 
 %.pdf: %.tex
+       perl -p -e 's/©//' refs.bib > refs-cleaned.bib
+       recode -d u8..ltex < refs-cleaned.bib > refs-processed.bib
        rubber -fd $<
 
 clean: 
        rubber -d --clean *.tex
        rm -f *.tmp
        rm -f vc
+       rm -f refs-cleaned.bib
+       rm -f refs-processed.bib
 
 viewpdf: all
        evince *.pdf

Benjamin Mako Hill || Want to submit a patch?