Skip to content

\hfilneg

yex.keyword.Hfilneg() #

Cancels the stretchability of a previous \hfil.

Source code in yex/keyword/box.py
252
253
254
255
256
257
258
259
260
261
@control(
    )
def Hfilneg():
    r"""
    Cancels the stretchability of a previous \hfil.
    """
    glue = yex.value.Glue(space=0,
            stretch=-1, stretch_unit='fil',
            )
    return yex.box.Leader(glue=glue)