de.dante.extex.interpreter.primitives.typesetter.box
Class Vtop

java.lang.Object
  extended byde.dante.extex.interpreter.type.AbstractCode
      extended byde.dante.extex.interpreter.primitives.typesetter.box.AbstractBoxPrimitive
          extended byde.dante.extex.interpreter.primitives.typesetter.box.Vbox
              extended byde.dante.extex.interpreter.primitives.typesetter.box.Vtop
All Implemented Interfaces:
Boxable, BoxOrRule, Code, Localizable, java.io.Serializable

public class Vtop
extends Vbox

This class provides an implementation for the primitive \vtop.

The Primitive \vtop

TODO missing documentation

The contents of the toks register \everyvbox is inserted at the beginning of the vertical material of the box.

Syntax

The formal description of this primitive is the following:
    ⟨vtop⟩
      → \vtop ⟨box specification⟩ { ⟨vertical material⟩ }

    ⟨box specification⟩
      →
         | to ⟨rule dimension⟩
         | spread ⟨rule dimension⟩  

Examples

    \vtop{abc}  
    \vtop to 120pt{abc}  
    \vtop spread 12pt{abc}  

Version:
$Revision: 1.13 $
Author:
Gerd Neugebauer
See Also:
Serialized Form

Field Summary
protected static long serialVersionUID
          The constant serialVersionUID contains the id for serialization.
 
Constructor Summary
Vtop(java.lang.String name)
          Creates a new object.
 
Method Summary
protected  Box constructBox(Context context, TokenSource source, Typesetter typesetter, Token startToken)
          Acquire a Box and adjust its height and depth according to the rules required.
 
Methods inherited from class de.dante.extex.interpreter.primitives.typesetter.box.Vbox
acquireBox, getBox
 
Methods inherited from class de.dante.extex.interpreter.primitives.typesetter.box.AbstractBoxPrimitive
execute
 
Methods inherited from class de.dante.extex.interpreter.type.AbstractCode
enableLocalization, getLocalizer, getName, isIf, isOuter, printable, printableControlSequence, readResolve, setName, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

serialVersionUID

protected static final long serialVersionUID
The constant serialVersionUID contains the id for serialization.

See Also:
Constant Field Values
Constructor Detail

Vtop

public Vtop(java.lang.String name)
Creates a new object.

Parameters:
name - the name for tracing and debugging
Method Detail

constructBox

protected Box constructBox(Context context,
                           TokenSource source,
                           Typesetter typesetter,
                           Token startToken)
                    throws InterpreterException
Description copied from class: Vbox
Acquire a Box and adjust its height and depth according to the rules required.

For a \vbox the alignment takes the last box contained and uses its reference point. The depth is preserved and the height is adjusted if required.

Overrides:
constructBox in class Vbox
Parameters:
context - the interpreter context
source - the source for new tokens
typesetter - the typesetter
startToken - the token which started the group
Returns:
the complete Box
Throws:
InterpreterException - in case of an error
See Also:
Vbox.constructBox( de.dante.extex.interpreter.context.Context, de.dante.extex.interpreter.TokenSource, de.dante.extex.typesetter.Typesetter, de.dante.extex.scanner.type.token.Token)