From 9e14f1c89c009b68106d9d0b1cee16f49fb65df1 Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Thu, 7 Jun 2001 21:51:25 +0000 Subject: [PATCH] Added support for LaTeX svn: r97 --- src/LaTeXDoc.py | 113 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 src/LaTeXDoc.py diff --git a/src/LaTeXDoc.py b/src/LaTeXDoc.py new file mode 100644 index 000000000..9d418b427 --- /dev/null +++ b/src/LaTeXDoc.py @@ -0,0 +1,113 @@ +# +# Gramps - a GTK+/GNOME based genealogy program +# +# Copyright (C) 2000 Donald N. Allingham +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# + +from TextDoc import * +from latin_utf8 import latin_to_utf8 + +try: + import Image + no_pil = 0 +except: + no_pil = 1 + +#------------------------------------------------------------------------ +# +# +# +#------------------------------------------------------------------------ +class LaTeXDoc(TextDoc): + + def open(self,filename): + if filename[-4:] != ".tex": + self.filename = filename + ".tex" + else: + self.filename = filename + + self.f = open(self.filename,"w") + self.f.write('\\documentclass[12pt]{article}\n') + self.f.write('\\usepackage[T1]{fontenc}\n') + self.f.write('\\usepackage[latin1]{inputenc}\n') + self.f.write('\\begin{document}\n') + self.f.write("\\title{}\n") + self.f.write("\\author{}\n") + + def close(self): + self.f.write('\\end{document}\n') + self.f.close() + + def start_page(self,orientation=None): + pass + + def end_page(self): + self.f.write('\\newpage') + + def start_paragraph(self,style_name): + style = self.style_list[style_name] + self.level = style.get_header_level() + if self.level == 1 : + self.f.write('\\section*{') + elif self.level == 2: + self.f.write('\\subsection*{') + elif self.level == 3: + self.f.write('\\subsubsection*{') + pass + + def end_paragraph(self): + if self.level > 0: + self.f.write('}\n') + else: + self.f.write('\n\\par\\noindent\n') + + def start_bold(self): + self.f.write('\\bfseries ') + pass + + def end_bold(self): + self.f.write('\\mdseries ') + pass + + def start_table(self,name,style_name): + pass + + def end_table(self): + pass + + def start_row(self): + pass + + def end_row(self): + pass + + def start_cell(self,style_name,span=1): + pass + + def end_cell(self): + pass + + def add_photo(self,name,x,y): + pass + + def horizontal_line(self): + pass + + def write_text(self,text): + self.f.write(text) + +