Skip to content

\vfilneg

yex.keyword.Vfilneg() #

Cancels the stretchability of a previous \vfil.

Source code in yex/keyword/box.py
304
305
306
307
308
309
310
311
312
313
314
315
@control(
    horizontal = 'vertical',
    vertical = True,
    )
def Vfilneg():
    r"""
    Cancels the stretchability of a previous \vfil.
    """
    glue = yex.value.Glue(space=0,
            stretch=-1, stretch_unit='fil',
            )
    return yex.box.Leader(glue=glue)