Ligatures for french oe words

This commit is contained in:
Frank Villaro-Dixon 2013-10-16 00:21:53 +02:00
parent 7ffb66f466
commit 75f6a8e110

21
bashrc
View file

@ -379,6 +379,27 @@ function mutt() {
fi;
}
function latex2pdf() {
test #$ -gt 1 || exit 1
tmp=tmp$$
file=/dev/shm/$tmp
result=$(echo $1 | rev | cut -d. -f2- | rev).pdf
sed 's/oeil/\\oe{}il/g;
s/oeuvre/\\oe{}uvre/g;
s/soeur/s\\oe{}ur/g;
s/noeud/n\\oe{}ud/g;
s/oeuf/\\oe{}uf/g;
s/boeuf/b\\oe{}uf/g
' $1 > $file
pdflatex $file
mv $tmp.pdf $result
rm -f $tmp*
}
# }}}
SSHAGENT=/usr/bin/ssh-agent