Skip to content

\endcsname

yex.keyword.Endcsname() #

Ends a \csname sequence.

This is special-cased by \csname, and in any other context it raises an exception.

Source code in yex/keyword/other.py
539
540
541
542
543
544
545
546
547
@yex.decorator.control()
def Endcsname():
    r"""
    Ends a \csname sequence.

    This is special-cased by \csname, and in any other context it
    raises an exception.
    """
    raise yex.exception.EndcsnameError()