Source code for pyexlatex.models.latex

from pyexlatex.models.item import SimpleItem


[docs]class LaTeX(SimpleItem): """ Displays the string "LaTeX" with special formatting """ name = 'LaTeX'
[docs] def __init__(self, **kwargs): super().__init__(self.name, '', **kwargs)