This commit is contained in:
Marc Beninca 2020-10-18 01:08:24 +02:00
parent cb0dcac270
commit 9992a38f8e
2 changed files with 4 additions and 5 deletions

View file

@ -40,10 +40,6 @@ TYPE_SHORT = {
ENGLISH: 'Thesis',
FRENCH: 'Mémoire',
}
TYPE_LONG = {
ENGLISH: f'CNAM Master\'s {TYPE_SHORT[ENGLISH]}',
FRENCH: f'{TYPE_SHORT[FRENCH]} d’Ingénieur CNAM',
}
def run(command):
@ -90,7 +86,6 @@ def build(directory, sign):
'dateshort': DATE_SHORT,
'datelong': DATE_LONG[language],
'typeshort': TYPE_SHORT[language],
'typelong': TYPE_LONG[language],
'name': MAIN,
'mainlanguage': language,
'otherlanguages': other_languages,

View file

@ -25,3 +25,7 @@ ERROR%
\newcommand{\en}[1]{\textenglish{#1}}
\newcommand{\fr}[1]{\textfrench{#1}}
% variables
\def\typelong{\ml{CNAM Master's \typeshort}{\typeshort\ d’Ingénieur CNAM}}