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 Details

    • caption

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

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

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

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

      public static BaseCommand bottom()
      Position at the bottom of the page.
    • top

      public static BaseCommand top()
      Position at the top of the page.
    • here

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