Skip to content

\begingroup

yex.keyword.Begingroup(doc) #

Begins a group, like {.

The group must be ended with \endgroup.

Source code in yex/keyword/other.py
285
286
287
288
289
290
291
292
293
294
295
296
@yex.decorator.control(
        expandable = True,
        )
def Begingroup(doc):
    r"""
    Begins a group, like `{`.

    The group must be ended with `\endgroup`.
    """
    doc.begin_group(
            from_begingroup = True,
            )