Class Floats
java.lang.Object
ch.stegmaier.java2tex.commands.registry.environments.Floats
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.
-
Method Summary
Modifier and TypeMethodDescriptionstatic ch.stegmaier.java2tex.core.BaseCommandbottom()Position at the bottom of the page.static ch.stegmaier.java2tex.core.GenericCommandcaption()Make a caption for a floating environment, such as a figure or table environmentstatic ch.stegmaier.java2tex.core.BaseCommandPlaces the float at precisely the location in the LaTeX code.static ch.stegmaier.java2tex.core.BaseCommandhere()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.BaseCommandoverride()Override internal parameters LaTeX uses for determining "good" float positions.static ch.stegmaier.java2tex.core.BaseCommandpage()Put on a special page for floats only.static ch.stegmaier.java2tex.core.BaseCommandtop()Position at the top of the page.
-
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)
-