From 486d58109772d2189c8313821aca040d62374631 Mon Sep 17 00:00:00 2001 From: Romain Goffe Date: Sun, 10 Jan 2010 14:29:33 +0100 Subject: [PATCH] =?UTF-8?q?Use=20utf8=20character=20=C5=93=20instead=20of?= =?UTF-8?q?=20latex=20macro?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- utils/latex-preprocessing | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/utils/latex-preprocessing b/utils/latex-preprocessing index 41085419..a5c0ac94 100755 --- a/utils/latex-preprocessing +++ b/utils/latex-preprocessing @@ -6,14 +6,14 @@ for i in songs/*/*.sg; do # oe inclusion -sed -i "s/coeur/c\\\oe{}ur/g" $i; -sed -i "s/boeuf/b\\\oe{}uf/g" $i; -sed -i "s/oeuvre/\\\oe{}uvre/g" $i; -sed -i "s/oeuf/\\\oe{}uf/g" $i; -sed -i "s/soeur/s\\\oe{}ur/g" $i; -sed -i "s/noeud/n\\\oe{}ud/g" $i; -sed -i "s/oeil/\\\oe{}il/g" $i; - +sed -i "s/coeur/cœur/g" $i; +sed -i "s/boeuf/bœuf/g" $i; +sed -i "s/oeuvre/œuvre/g" $i; +sed -i "s/oeuf/œuf/g" $i; +sed -i "s/soeur/sœur/g" $i; +sed -i "s/noeud/nœud/g" $i; +sed -i "s/oeil/œil/g" $i; +sed -i "s/\\\oe{}/œ/g" $i; #punctuation sed -i "s/’/'/g" $i; sed -i "s/Ca /Ça /g" $i;