Skip to content

\hfilll

yex.keyword.Hfilll() #

Skips horizontally by zero, but with even more infinite stretchability.

(TeΧbook p72: "TeΧ does not provide a '\vfilll' primitive, since the use of this highest infinity is not encouraged.")

Source code in yex/keyword/box.py
226
227
228
229
230
231
232
233
234
235
236
237
238
@control(
        )
def Hfilll():
    r"""
    Skips horizontally by zero, but with even more infinite stretchability.

    (TeXbook p72: "TeX does not provide a '\vfilll' primitive, since the
    use of this highest infinity is not encouraged.")
    """
    glue = yex.value.Glue(space=0,
            stretch=1, stretch_unit='filll',
            )
    return yex.box.Leader(glue=glue)