Source code for pyexlatex.models.format.text.smallcaps

from pyexlatex.models.section.base import TextAreaMixin
from pyexlatex.models.item import SimpleItem


[docs]class SmallCaps(TextAreaMixin, SimpleItem): """ Makes text all caps, but with originally capital letters slightly larger than other letters. """ name = 'textsc'
[docs] def __init__(self, contents, **kwargs): super().__init__(self.name, contents, **kwargs)