Class Document

java.lang.Object
ch.stegmaier.java2tex.commands.registry.Document

public class Document extends Object
Startup and ending of all all documents
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    documentclass argument: for a journal article, a presentation, and miscellaneous general use
    documentclass argument: full-length books, including chapters and possibly including front matter, such as a preface, and back matter, such as an appendix
    LaTeX files have a simple global structure, with a standard beginning and ending.
    The document’s overall class is defined with this command, which is normally the first command in a LaTeX source file.
    documentclass argument: for documents of length between an article and a book, such as technical reports or theses, which may contain several chapters.
    Load a package pkg, with the package options given in the comma-separated list options, as here.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • usepackage

      public static GenericCommand usepackage()
      Load a package pkg, with the package options given in the comma-separated list options, as here.
      See Also:
    • document

      public static 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 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 BaseCommand article()
      documentclass argument: for a journal article, a presentation, and miscellaneous general use
    • report

      public static 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 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