Class Definitions

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

public class Definitions extends Object
LaTeX has support for making new commands of many different kinds.
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static ch.stegmaier.java2tex.core.GenericCommand
    Use this pair when you redefine LaTeX commands that are named with an at-sign character ‘@’.
    static ch.stegmaier.java2tex.core.GenericCommand
    Use this pair when you redefine LaTeX commands that are named with an at-sign character ‘@’.

    Methods inherited from class java.lang.Object

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

    • Definitions

      public Definitions()
  • Method Details

    • makeatletter

      public static ch.stegmaier.java2tex.core.GenericCommand makeatletter()
      Use this pair when you redefine LaTeX commands that are named with an at-sign character ‘@’. The \makeatletter declaration makes the at-sign character have the category code of a letter, code 11. The \makeatother declaration sets the category code of the at-sign to code 12, its default value. For a comprehensive list of macros with an at-sign in their names see macros2e.
      See Also:
    • makeatother

      public static ch.stegmaier.java2tex.core.GenericCommand makeatother()
      Use this pair when you redefine LaTeX commands that are named with an at-sign character ‘@’. The \makeatletter declaration makes the at-sign character have the category code of a letter, code 11. The \makeatother declaration sets the category code of the at-sign to code 12, its default value. For a comprehensive list of macros with an at-sign in their names see macros2e.
      See Also: