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