Source code for pyexlatex.models.label

from pyexlatex.models.item import SimpleItem


[docs]class Label(SimpleItem): """ A label which can later be referred to by Ref """ name = 'label'
[docs] def __init__(self, contents): super().__init__(self.name, contents)