コード例 #1
0
class SimpleLaTeXDoc(BaseDoc, TextDoc):
    """
    Document method handler.
    """
    def __init__(self, styles, paper_style, track, uistate=None):
        BaseDoc.__init__(self, styles, paper_style, track, uistate)
        self._backend = None
        self._table_cells = []
        self._collect_cells = False
        self._open_cell = None

    def open(self, filename):
        """Opens the specified file, making sure that it has the
        extension of .tex"""
        self._backend = DocBackend(filename)
        self._backend.open()
        # self._backend.write(
        #     r"\documentclass[a4paper,landscape,10pt]{article}" + "\n")
        self._backend.write(r"\documentclass[10pt]{extarticle}" + "\n")
        self._backend.write(
            r"\usepackage[a4paper,landscape,left=2cm]{geometry}" + "\n")
        self._backend.write(r"\usepackage{multirow}" + "\n")
        self._backend.write(r"\usepackage{array}" + "\n")
        self._backend.write(r"\usepackage{calc}" + "\n")
        self._backend.write(r"\usepackage{genealogytree}" + "\n")
        self._backend.write(r"\newcommand{\namewidth}{0.15\textwidth}" + "\n")
        self._backend.write(r"\newcommand{\locationwidth}{0.09\textwidth}" +
                            "\n")
        self._backend.write(r"\newcommand{\datewidth}{0.07\textwidth}" + "\n")
        self._backend.write(r"\newcommand{\symbolwidth}{0.005\textwidth}" +
                            "\n")
        self._backend.write(r"\newcommand{\referencewidth}{0.04\textwidth}" +
                            "\n")
        self._backend.write(r"\newcommand{\heimatortwidth}{0.12\textwidth}" +
                            "\n")
        self._backend.write(r"\newcommand{\gapwidth}{0.01\textwidth}" + "\n")
        self._backend.write(
            r"\newcommand{\notewidth}{\symbolwidth+\datewidth+\namewidth+\heimatortwidth}"
            + "\n")
        self._backend.write(
            r"\newcolumntype{N}{>{\raggedright\arraybackslash}p{\notewidth}}" +
            "\n")
        self._backend.write(r"\begin{document}" + "\n")
        self._backend.write(r"\newgeometry{left=1.5cm} % Ränder kleiner" +
                            "\n")

    def close(self):
        """Clean up and close the document"""
        self._backend.write(r"\end{document}")
        self._backend.close()

    def write_text(self, text, mark=None, links=False):
        """Write the text to the file"""
        if self._open_cell is None:
            self._backend.write(text)
        else:
            self.__append_to_cell(text)

    def start_paragraph(self, style_name, leader=None):
        """Paragraphs handling - A Gramps paragraph is any
        single body of text from a single word to several sentences.
        We assume a linebreak at the end of each paragraph."""

    def end_paragraph(self):
        """End the current paragraph"""
        pass

    def start_bold(self):
        control = r"\textbf{"
        if self._open_cell is None:
            self._backend.write(control)
        else:
            self.__append_to_cell(control)

    def end_bold(self):
        """End bold face"""
        control = r"}"
        if self._open_cell is None:
            self._backend.write(control)
        else:
            self.__append_to_cell(control)

    def start_table(self, name, style_name):
        """Begin new table"""
        self._backend.write(r"\begin{table}" + "\n")
        self._backend.write(
            r"\begin{tabular}{" + "\n" + \
            r"p{\namewidth}" + "\n" + \
            r"p{\symbolwidth}" + "\n" + \
            r">{\raggedleft\arraybackslash}p{\datewidth}" + "\n" + \
            r"p{\locationwidth}" + "\n" + \
            r"p{\gapwidth}" + "\n" + \
            r">{\centering}p{\symbolwidth}" + "\n" + \
            r">{\raggedleft\arraybackslash}p{\datewidth}" + "\n" + \
            r"p{\locationwidth}" + "\n" + \
            r"p{\gapwidth}" + "\n" + \
            r">{\centering}p{\symbolwidth}" + "\n" + \
            r">{\raggedleft\arraybackslash}p{\datewidth}" + "\n" + \
            r"p{\namewidth}" + "\n" + \
            r"p{\heimatortwidth}" + "\n" + \
            r"p{\gapwidth}" + "\n" + \
            r"p{\referencewidth}" + "\n" + \
            r"}" + "\n")

    def end_table(self, label=None):
        """Close the table environment"""
        self._backend.write(r"\end{tabular}" + "\n")
        if label:
            self.write_text(r"\label{" + label + "}")
        # self._backend.write(r"\vspace{3.6cm}" + "\n")
        # self._backend.write(r"\\\\\noindent\rule[0.6ex]{\linewidth}{1pt}" + "\n")
        self._backend.write(r"\end{table}" + "\n")

    def start_row(self):
        """Begin a new row"""
        self._table_cells = []

    def end_row(self):
        """End the row (new line)"""
        self._backend.write("&".join(self._table_cells))

        self._backend.write(r"\\" + "\n")

    def start_cell(self, style_name, span=1, format='l'):
        """Add an entry to the table.
        We always place our data inside braces
        for safety of formatting."""
        self._open_cell = ("", 1)
        # if span > 1:
        #     self._open_cell = (r"\multicolumn{" + \
        #                        "{}".format(span) + r"}{l}{", span)
        if span > 1:
            self._open_cell = (r"\multicolumn" + \
                "{{{}}}{{{}}}{{".format(span, format), span)

    def end_cell(self):
        """Prepares for next cell"""
        if self._open_cell[1] > 1:
            self._open_cell = (self._open_cell[0] + r"}", self._open_cell[1])
        self._table_cells.append(self._open_cell[0])
        self._open_cell = None

    def start_superscript(self):
        """Start superscript"""
        pass

    def end_superscript(self):
        """End superscript"""
        pass

    def add_media(self,
                  name,
                  align,
                  w_cm,
                  h_cm,
                  alt='',
                  style_name=None,
                  crop=None):
        """Add photo to report"""
        pass

    def page_break(self):
        "Forces a page break, creating a new page"
        self._backend.write(r"\newpage")

    def make_pageref(self, label):
        self.write_text(r"\pageref{" + label + "}")

    def __append_to_cell(self, text):
        self._open_cell = (self._open_cell[0] + text, self._open_cell[1])
コード例 #2
0
 def __write(self, string):
     """ a write to the file
     """
     DocBackend.write(self, string + '\n')