from pyexlatex.models.environment import Environment
[docs]class TableEnvironment(Environment):
name = 'table'
[docs] def __init__(self):
super().__init__(name=self.name)
[docs]class ThreePartTableEnvironment(Environment):
name = 'threeparttable'
[docs] def __init__(self):
super().__init__(name=self.name)
[docs]class TabularEnvironment(Environment):
name = 'tabular'
[docs] def __init__(self):
super().__init__(name=self.name)