diff --git a/gramps/src/docgen/LaTeXDoc.py b/gramps/src/docgen/LaTeXDoc.py index 688cee3d7..b810a37e1 100644 --- a/gramps/src/docgen/LaTeXDoc.py +++ b/gramps/src/docgen/LaTeXDoc.py @@ -374,6 +374,7 @@ class LaTeXDoc(TextDoc): """Write the text to the file""" if text == '\n': text = '\\newline\n' + text = string.replace(text,'#','\#') self.f.write(text)