Skip to content

\shipout

yex.keyword.Shipout(box, doc) #

Sends a box to the output.

Source code in yex/keyword/other.py
743
744
745
746
747
748
749
750
751
752
753
754
755
756
@yex.decorator.control(
    horizontal = True,
    vertical = True,
    math = True,
)
def Shipout(box: yex.box.Box, doc):
    r"""
    Sends a box to the output.
    """

    logger.debug(r'\shipout: shipping %s',
            box)

    doc.shipout(box)