mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 15:43:16 +02:00
31 lines
474 B
Python
31 lines
474 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
|