from pyexlatex.models.item import SimpleItem
from pyexlatex.models.section.base import TextAreaMixin
from pyexlatex.typing import PyexlatexItems
[docs]class PS(TextAreaMixin, SimpleItem):
name = 'ps'
[docs] def __init__(self, ps: PyexlatexItems):
self.ps = ps
super().__init__(self.name, self.ps)