-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.sty
28 lines (25 loc) · 1.26 KB
/
config.sty
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
%%%%%%%%%% GENERAL %%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\def\date{\today}
\RequirePackage[english]{babel}% define language of document (english by default) — babel is the name of the package
%%%%%%%%%%% COLOR %%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\definecolor{mainColor}{HTML}{315399} % document main color (blue by default)
\definecolor{textColorHeader}{HTML}{C1C9D1} % color text header (light grey by default)
%%%%%%%%%%% IMAGE %%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\def\headerImage{assets/img/paper-clip.png} % header image of document
\def\headerImageScale{.3} % sclale of header image (0.2 by default)
\def\coverSheetImage{assets/img/background.png} % image coverpage
\def\logoImage{assets/img/paper-clip.png} % logo on cover page
%%%%%%%%%%% INFOS %%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\def\title{Title of the document} % the title of the document
\def\author{Author} % the author of the document
\def\compagny{Compagny}
\def\copyright{% the copyright of the document, by default CC-BY-CC — leave it empty if don't need it
{\tiny %
\title,~\the\year{},~\compagny,~by \author~is under licence :~%
\href{https://creativecommons.org/licenses/by-nc/4.0/?ref=chooser-v1}{\faCreativeCommons~\faCreativeCommonsBy~\faCreativeCommonsNc}
}%
}