lib
Interface ILaTeXOutput

All Known Implementing Classes:
LaTeXOutput

public interface ILaTeXOutput


Method Summary
 void beginEnvironment(java.lang.String e)
          begin{environment} end{environment}
 void documentClass(java.lang.String d)
          documentclass[options]{class}
 void documentClass(java.lang.String options, java.lang.String d)
           
 void endEnvironment(java.lang.String e)
           
 void newCommand(java.lang.String name, int num, java.lang.String definition)
           
 void newCommand(java.lang.String name, java.lang.String definition)
          newcommand{name}[num]{definition}
 void pdfTeX()
          Maak een .pdf van de .tex
 void section(java.lang.String s)
          sections[options]{name}
 void section(java.lang.String options, java.lang.String s)
           
 void showTeX()
          Open de pdf
 void subsection(java.lang.String s)
           
 void subsection(java.lang.String options, java.lang.String s)
           
 void tabular(java.lang.String spec)
          begin{tabular}[pos]{table spec}
 void tabular(java.lang.String pos, java.lang.String spec)
           
 void topMatter(java.lang.String title, java.lang.String author, java.lang.String date)
          Default Top Matter Structure
 void usePackage(java.lang.String p)
          usepackage[options]{package}
 void usePackage(java.lang.String options, java.lang.String p)
           
 void writeToTeX(java.lang.String s)
          Schrijf een String naar het texbestand
 

Method Detail

writeToTeX

void writeToTeX(java.lang.String s)
                throws java.io.IOException
Schrijf een String naar het texbestand

Throws:
java.io.IOException

topMatter

void topMatter(java.lang.String title,
               java.lang.String author,
               java.lang.String date)
               throws java.io.IOException
Default Top Matter Structure

Throws:
java.io.IOException

documentClass

void documentClass(java.lang.String d)
                   throws java.io.IOException
documentclass[options]{class}

Throws:
java.io.IOException

documentClass

void documentClass(java.lang.String options,
                   java.lang.String d)
                   throws java.io.IOException
Throws:
java.io.IOException

usePackage

void usePackage(java.lang.String p)
                throws java.io.IOException
usepackage[options]{package}

Throws:
java.io.IOException

usePackage

void usePackage(java.lang.String options,
                java.lang.String p)
                throws java.io.IOException
Throws:
java.io.IOException

beginEnvironment

void beginEnvironment(java.lang.String e)
                      throws java.io.IOException
begin{environment} end{environment}

Throws:
java.io.IOException

endEnvironment

void endEnvironment(java.lang.String e)
                    throws java.io.IOException
Throws:
java.io.IOException

section

void section(java.lang.String s)
             throws java.io.IOException
sections[options]{name}

Throws:
java.io.IOException

section

void section(java.lang.String options,
             java.lang.String s)
             throws java.io.IOException
Throws:
java.io.IOException

subsection

void subsection(java.lang.String s)
                throws java.io.IOException
Throws:
java.io.IOException

subsection

void subsection(java.lang.String options,
                java.lang.String s)
                throws java.io.IOException
Throws:
java.io.IOException

tabular

void tabular(java.lang.String spec)
             throws java.io.IOException
begin{tabular}[pos]{table spec}

Throws:
java.io.IOException

tabular

void tabular(java.lang.String pos,
             java.lang.String spec)
             throws java.io.IOException
Throws:
java.io.IOException

newCommand

void newCommand(java.lang.String name,
                java.lang.String definition)
                throws java.io.IOException
newcommand{name}[num]{definition}

Throws:
java.io.IOException

newCommand

void newCommand(java.lang.String name,
                int num,
                java.lang.String definition)
                throws java.io.IOException
Throws:
java.io.IOException

pdfTeX

void pdfTeX()
Maak een .pdf van de .tex


showTeX

void showTeX()
Open de pdf