summaryrefslogtreecommitdiff
path: root/report/pyp_clustering
diff options
context:
space:
mode:
authorredpony <redpony@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-08-18 22:20:32 +0000
committerredpony <redpony@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-08-18 22:20:32 +0000
commit5d1ce5c1a4cc1c9cc4091847c19552394155a92a (patch)
tree92ea73a54ad5f128b0d37178321f93caecbcf0f5 /report/pyp_clustering
parent8ec14f00d1078f0fa7ab3ba2a01954b1f6ca5260 (diff)
add example grammar
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@594 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'report/pyp_clustering')
-rwxr-xr-xreport/pyp_clustering/format-grammar-latex.pl21
1 files changed, 21 insertions, 0 deletions
diff --git a/report/pyp_clustering/format-grammar-latex.pl b/report/pyp_clustering/format-grammar-latex.pl
new file mode 100755
index 00000000..e1fe3e45
--- /dev/null
+++ b/report/pyp_clustering/format-grammar-latex.pl
@@ -0,0 +1,21 @@
+#!/usr/bin/perl -w
+use strict;
+my $x = '';
+while(<>){
+ if (/^$/) { print "\\hline\n"; next; }
+ if (/^(\d+)$/) {
+ $x=$1;
+ $x=~s/^(\d\d\d)(\d\d\d)(\d\d\d)$/$1,$2,$3/;
+ $x=~s/^(\d\d)(\d\d\d)(\d\d\d)$/$1,$2,$3/;
+ $x=~s/^(\d)(\d\d\d)(\d\d\d)$/$1,$2,$3/;
+ $x=~s/^(\d\d\d)(\d\d\d)$/$1,$2/;
+ $x=~s/^(\d\d)(\d\d\d)$/$1,$2/;
+ $x=~s/^(\d)(\d\d\d)$/$1,$2/;
+ next;
+ }
+ s/ \|\|\| LHSProb.*$//; s/ \|\|\| / \\rightarrow \\langle \\textrm{/; s/\[X(\d+)\]/\\textrm{X}^{$1}/;
+ s/ \|\|\| /},\\textrm{{\\emph /;
+ chomp;
+ print "$x & \$ $_}} \\rangle \$ \\\\\n";
+ $x="";
+}