java.lang.Object
ch.stegmaier.java2tex.core.BaseCommand<X>
ch.stegmaier.java2tex.core.GenericCommand<X>
ch.stegmaier.java2tex.core.GenericEnvironment<Minipage>
ch.stegmaier.java2tex.commands.registry.impl.Minipage

public class Minipage extends ch.stegmaier.java2tex.core.GenericEnvironment<Minipage>
Put contents into a box that is width wide. This is like a small version of a page; it can contain its own footnotes, itemized lists, etc. (There are some restrictions, including that it cannot have floats.) This box will not be broken across pages.
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    b()
    Align the baseline of the bottom line in the minipage with the baseline of the surrounding text (plain TeX’s \vbox).
    c()
    (synonym m) Default.
    t()
    Align the baseline of the top line in the minipage with the baseline of the surrounding text (plain TeX’s \vtop).

    Methods inherited from class ch.stegmaier.java2tex.core.GenericEnvironment

    append, buildName, optionBuilder, toString

    Methods inherited from class ch.stegmaier.java2tex.core.GenericCommand

    append, append, append, appendNewLine, argument, argument, argument, argument, arguments, autoNewline, buildMandatory, buildOptional, clear, emptyArgs, getConfigValue, getConfigValue, getContent, noFormat, noPrefix, option, option, option, option, star, validate

    Methods inherited from class ch.stegmaier.java2tex.core.BaseCommand

    getCommand, getThis

    Methods inherited from class java.lang.Object

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

    • Minipage

      public Minipage()
  • Method Details

    • t

      public Minipage t()
      Align the baseline of the top line in the minipage with the baseline of the surrounding text (plain TeX’s \vtop).
    • c

      public Minipage c()
      (synonym m) Default. Positions the minipage so its vertical center lines up with the center of the adjacent text line.
    • b

      public Minipage b()
      Align the baseline of the bottom line in the minipage with the baseline of the surrounding text (plain TeX’s \vbox).