java.lang.Object
ch.stegmaier.java2tex.commands.registry.environments.Floats

public class Floats extends Object
Some typographic elements, such as figures and tables, cannot be broken across pages. They must be typeset outside of the normal flow of text, for instance floating to the top of a later page.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    static ch.stegmaier.java2tex.core.BaseCommand
    Position at the bottom of the page.
    static ch.stegmaier.java2tex.core.GenericCommand
    Make a caption for a floating environment, such as a figure or table environment
    static ch.stegmaier.java2tex.core.BaseCommand
    Places the float at precisely the location in the LaTeX code.
    static ch.stegmaier.java2tex.core.BaseCommand
    Place the float here, i.e., approximately at the same point it occurs in the source text (however, not exactly at the spot)
    static ch.stegmaier.java2tex.core.BaseCommand
    Override internal parameters LaTeX uses for determining "good" float positions.
    static ch.stegmaier.java2tex.core.BaseCommand
    Put on a special page for floats only.
    static ch.stegmaier.java2tex.core.BaseCommand
    top()
    Position at the top of the page.

    Methods inherited from class java.lang.Object

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

    • caption

      public static ch.stegmaier.java2tex.core.GenericCommand caption()
      Make a caption for a floating environment, such as a figure or table environment
      See Also:
    • exactHere

      public static ch.stegmaier.java2tex.core.BaseCommand exactHere()
      Places the float at precisely the location in the LaTeX code. Requires the float package, i.e., \\usepackage{float}.
    • override

      public static ch.stegmaier.java2tex.core.BaseCommand override()
      Override internal parameters LaTeX uses for determining "good" float positions.
    • page

      public static ch.stegmaier.java2tex.core.BaseCommand page()
      Put on a special page for floats only.
    • bottom

      public static ch.stegmaier.java2tex.core.BaseCommand bottom()
      Position at the bottom of the page.
    • top

      public static ch.stegmaier.java2tex.core.BaseCommand top()
      Position at the top of the page.
    • here

      public static ch.stegmaier.java2tex.core.BaseCommand here()
      Place the float here, i.e., approximately at the same point it occurs in the source text (however, not exactly at the spot)