From de4773b84b1195521b56eef4caf5c40d9eb64c67 Mon Sep 17 00:00:00 2001 From: Benjamin Mako Hill Date: Tue, 13 Mar 2012 13:54:54 -0400 Subject: [PATCH] added code to deal with utf8 bibliographies --- paper_template/Makefile | 2 ++ paper_template/refs.bib | 2 +- paper_template/text.tex | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/paper_template/Makefile b/paper_template/Makefile index d4bbda0..1b183d1 100644 --- a/paper_template/Makefile +++ b/paper_template/Makefile @@ -4,12 +4,14 @@ all: $(patsubst %.tex,%.pdf,$(wildcard *.tex)) pdf: all %.pdf: %.tex + recode -d u8..ltex < refs.bib > refs-processed.bib rubber -fd $< clean: rubber -d --clean *.tex rm -f *.tmp rm -f vc + rm -f refs-processed.bib viewpdf: all evince *.pdf diff --git a/paper_template/refs.bib b/paper_template/refs.bib index 6041082..ca1f7a4 100644 --- a/paper_template/refs.bib +++ b/paper_template/refs.bib @@ -1,5 +1,5 @@ @inproceedings{989866, - author = {Ken Hinckley and Gonzalo Ramos and Francois + author = {Ken Hinckley and Gonzalo Ramos and François Guimbretiere and Patrick Baudisch and Marc Smith}, title = {Stitching: pen gestures that span multiple displays}, booktitle = {AVI '04: Proceedings of the working conference on diff --git a/paper_template/text.tex b/paper_template/text.tex index 21b74bf..15813a9 100644 --- a/paper_template/text.tex +++ b/paper_template/text.tex @@ -79,7 +79,7 @@ fox jumps over the lazy dog \citep{989866}. % bibliography here \renewcommand{\bibsection}{\section{\bibname}\prebibhook} \baselineskip 14.2pt -\bibliography{refs} +\bibliography{refs-processed} \bibliographystyle{chicago} \end{document} -- 2.30.2