Class Document
java.lang.Object
ch.stegmaier.java2tex.commands.registry.Document
Startup and ending of all documents
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionstatic ch.stegmaier.java2tex.core.BaseCommandarticle()documentclass argument: for a journal article, a presentation, and miscellaneous general usestatic ch.stegmaier.java2tex.core.BaseCommandbook()documentclass argument: full-length books, including chapters and possibly including front matter, such as a preface, and back matter, such as an appendixstatic ch.stegmaier.java2tex.core.GenericEnvironmentdocument()LaTeX files have a simple global structure, with a standard beginning and ending.static ch.stegmaier.java2tex.core.GenericCommandThe document’s overall class is defined with this command, which is normally the first command in a LaTeX source file.static ch.stegmaier.java2tex.core.BaseCommandreport()documentclass argument: for documents of length between an article and a book, such as technical reports or theses, which may contain several chapters.static ch.stegmaier.java2tex.core.GenericCommandLoad a package pkg, with the package options given in the comma-separated list options, as here.
-
Method Details
-
usepackage
public static ch.stegmaier.java2tex.core.GenericCommand usepackage()Load a package pkg, with the package options given in the comma-separated list options, as here.- See Also:
-
document
public static ch.stegmaier.java2tex.core.GenericEnvironment document()LaTeX files have a simple global structure, with a standard beginning and ending. This is a small example.- See Also:
-
documentclass
public static ch.stegmaier.java2tex.core.GenericCommand documentclass()The document’s overall class is defined with this command, which is normally the first command in a LaTeX source file.- See Also:
-
article
public static ch.stegmaier.java2tex.core.BaseCommand article()documentclass argument: for a journal article, a presentation, and miscellaneous general use -
report
public static ch.stegmaier.java2tex.core.BaseCommand report()documentclass argument: for documents of length between an article and a book, such as technical reports or theses, which may contain several chapters. -
book
public static ch.stegmaier.java2tex.core.BaseCommand book()documentclass argument: full-length books, including chapters and possibly including front matter, such as a preface, and back matter, such as an appendix
-