mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 17:43:12 +02:00
10 lines
392 B
Python
10 lines
392 B
Python
"""
|
|
Holds an array of all classes from https://ctan.org/topic/class
|
|
"""
|
|
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']
|
|
|
|
|
|
def return_latex_classes():
|
|
""" Returns latex classes array"""
|
|
return classes
|