WUT_Computer_Science/program/code/latex_classes/latex_classes.py

10 lines
392 B
Python
Raw Normal View History

2023-05-03 14:59:06 +02:00
"""
Holds an array of all classes from https://ctan.org/topic/class
"""
2023-05-03 20:29:08 +02:00
classes = ['article', 'report', 'book', 'beamer', 'letter', 'memoir', 'slides', 'IEEEtran', 'exam', 'amsart', 'amsbook', 'tufte-book', 'scrartcl', 'scrreprt', 'moderncv', 'cv', 'res', 'elsarticle', 'acm_proc_article-sp', 'scrbook']
2023-05-03 14:59:06 +02:00
2023-05-03 20:29:08 +02:00
def return_latex_classes():
2023-05-03 14:59:06 +02:00
""" Returns latex classes array"""
return classes