summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorivan <ivan>2003-12-15 03:41:10 +0000
committerivan <ivan>2003-12-15 03:41:10 +0000
commit4a46507233cdd366306562f97730eadaa09ae400 (patch)
tree0a861449ef7b74041b8f8eab868e73959e0d2c98 /FS
parentcc19608aa931a3f57e3f4a899e0ef49b2590877e (diff)
add _latex_escape sub
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/cust_bill.pm15
1 files changed, 15 insertions, 0 deletions
diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm
index 868771109..353ab49ea 100644
--- a/FS/FS/cust_bill.pm
+++ b/FS/FS/cust_bill.pm
@@ -1090,6 +1090,21 @@ sub print_ps {
}
+# quick subroutine for print_ps
+#
+# There are ten characters that LaTeX treats as special characters, which
+# means that they do not simply typeset themselves:
+# # $ % & ~ _ ^ \ { }
+#
+# TeX ignores blanks following an escaped character; if you want a blank (as
+# in "10% of ..."), you have to "escape" the blank as well ("10\%\ of ...").
+
+sub _latex_escape {
+ my $value = shift;
+ $value =~ s/([#\$%&~_\^{}])( )?/"\\$1". ( length($2) ? "\\$2" : '' )/ge;
+ $value;
+}
+
#utility methods for print_*
sub balance_due_msg {