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

public class Table extends Object
Produce a table, a box consisting of a sequence of horizontal rows. Each row consists of items that are aligned vertically in columns.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    static ch.stegmaier.java2tex.core.BaseCommand
    A column of centered items.
    static ch.stegmaier.java2tex.core.BaseCommand
    A columnseparator within a the body of table environment
    static ch.stegmaier.java2tex.core.GenericCommand
    Draw a horizontal line the width of the enclosing tabular or array environment.
    static ch.stegmaier.java2tex.core.BaseCommand
    A column of left-aligned items.
    static ch.stegmaier.java2tex.core.BaseCommand
    lf()
    End of a row in a table environment
    static ch.stegmaier.java2tex.core.BaseCommand
    A column of right-aligned items.
    static Row
    row()
    creates a simple row helper for the table or tabular environment with column separation and row end
    static Tabular
    tabular environment
    static ch.stegmaier.java2tex.core.BaseCommand
    A vertical line the full height and depth of the environment.

    Methods inherited from class java.lang.Object

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

    • row

      public static Row row()
      creates a simple row helper for the table or tabular environment with column separation and row end
      See Also:
    • tabular

      public static Tabular tabular()
      tabular environment
      See Also:
    • left

      public static ch.stegmaier.java2tex.core.BaseCommand left()
      A column of left-aligned items.
    • vLine

      public static ch.stegmaier.java2tex.core.BaseCommand vLine()
      A vertical line the full height and depth of the environment.
    • right

      public static ch.stegmaier.java2tex.core.BaseCommand right()
      A column of right-aligned items.
    • center

      public static ch.stegmaier.java2tex.core.BaseCommand center()
      A column of centered items.
    • colSep

      public static ch.stegmaier.java2tex.core.BaseCommand colSep()
      A columnseparator within a the body of table environment
    • lf

      public static ch.stegmaier.java2tex.core.BaseCommand lf()
      End of a row in a table environment
    • hline

      public static ch.stegmaier.java2tex.core.GenericCommand hline()
      Draw a horizontal line the width of the enclosing tabular or array environment. It’s most commonly used to draw a line at the top, bottom, and between the rows of a table.
      See Also: