The credits file now also has underscores, which need to be escaped in LaTeX.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13431 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
f7a81a9d6a
commit
41ac7da18b
1 changed files with 2 additions and 1 deletions
|
@ -8,7 +8,8 @@
|
|||
#
|
||||
while (<STDIN>) {
|
||||
if(($_ =~ /^([A-Z]+[\S ]+)/) && ($_ !~ /^People/)) {
|
||||
print "\\Forward{}\~$1\n";
|
||||
s/\_/\\\_/g;
|
||||
print "\\Forward{}\~$_";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue