diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2019-08-10 20:36:56 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2019-08-10 20:36:56 +0200 |
commit | f83e8b39df08ea9e9ca130a4578c749d48d55844 (patch) | |
tree | 2f774eaf9d5aeaa87d5b6e19697c123584aaa495 /model_2/resources |
First commit
Diffstat (limited to 'model_2/resources')
-rwxr-xr-x | model_2/resources/00_colors.tex | 10 | ||||
-rwxr-xr-x | model_2/resources/00_preamble.tex | 27 | ||||
-rwxr-xr-x | model_2/resources/10_fonts.tex | 8 | ||||
-rwxr-xr-x | model_2/resources/10_language.tex | 8 | ||||
-rwxr-xr-x | model_2/resources/10_levels.tex | 73 | ||||
-rwxr-xr-x | model_2/resources/10_lists.tex | 17 | ||||
-rwxr-xr-x | model_2/resources/10_nowidows.tex | 2 | ||||
-rwxr-xr-x | model_2/resources/10_title_style.tex | 46 | ||||
-rwxr-xr-x | model_2/resources/90_ref.tex | 35 | ||||
-rwxr-xr-x | model_2/resources/99_sidebar.tex | 48 | ||||
-rwxr-xr-x | model_2/resources/modules | 13 |
11 files changed, 287 insertions, 0 deletions
diff --git a/model_2/resources/00_colors.tex b/model_2/resources/00_colors.tex new file mode 100755 index 0000000..6698132 --- /dev/null +++ b/model_2/resources/00_colors.tex @@ -0,0 +1,10 @@ +\usepackage{xcolor}
+
+% Couleur utilisée pour le bandeau
+\definecolor{backsidecolor}{RGB}{233,223,214}
+
+% Couleur utilisée pour les éléments du bandeau
+\definecolor{sidecolor}{RGB}{69,69,69}
+
+% Couleur utilisée pour le texte du bandeau
+%\definecolor{textsidecolor}{RGB}{0,100,0}
diff --git a/model_2/resources/00_preamble.tex b/model_2/resources/00_preamble.tex new file mode 100755 index 0000000..d949922 --- /dev/null +++ b/model_2/resources/00_preamble.tex @@ -0,0 +1,27 @@ +\usepackage[a4paper, top=0.5cm, bottom=0.5cm, outer=0.5cm, inner=0.5cm]{geometry} +\pagestyle{empty} +\pagenumbering{gobble} + +\usepackage{fontspec} +\defaultfontfeatures{Ligatures={Common, Required, Contextual}} +\setmainfont{EB Garamond} + +% Change the font for bold text +\let\bf\textbf +\renewcommand{\textbf}[1]{{\LibertineFont\selectfont\bf{#1}}} + +\setmonofont{Latin Modern Mono Light} + + +\newcommand{\DUrolelatex}[1]{#1} + +% Supprime l'indentation pour les listes de définitions +\newenvironment{DUfieldlist}% + {\description[align=left,labelwidth=1.0cm,leftmargin=.5cm]} + {\enddescription} + +\makeatletter +\newcommand{\ifdefinedcolor}[3]{% + \@ifundefinedcolor{#1}{#3}{#2} +} +\makeatother diff --git a/model_2/resources/10_fonts.tex b/model_2/resources/10_fonts.tex new file mode 100755 index 0000000..e229582 --- /dev/null +++ b/model_2/resources/10_fonts.tex @@ -0,0 +1,8 @@ +\newfontfamily\EBLigatures{EB Garamond}[
+ Mapping=tex-text,
+ Ligatures={Common, Required, Contextual, Historic}
+]
+\newfontfamily\LibertineFont[Mapping=tex-text]{Linux Libertine O}
+\newfontfamily\CaviarDreamsFont[Path=../fonts/, Mapping=tex-text]{CaviarDreams}
+\newfontfamily\CaviarDreamsBoldFont[Path=../fonts/, Mapping=tex-text]{CaviarDreams_Bold}
+
diff --git a/model_2/resources/10_language.tex b/model_2/resources/10_language.tex new file mode 100755 index 0000000..7cc0990 --- /dev/null +++ b/model_2/resources/10_language.tex @@ -0,0 +1,8 @@ +\RequirePackage[french]{babel}
+
+%\frenchbsetup{ItemLabeli=\color{fondetsection}\ding{251}}
+
+\selectlanguage{french}
+\frenchspacing
+\FrenchFootnotes
+
diff --git a/model_2/resources/10_levels.tex b/model_2/resources/10_levels.tex new file mode 100755 index 0000000..7660b1d --- /dev/null +++ b/model_2/resources/10_levels.tex @@ -0,0 +1,73 @@ +\newcommand{\DUrolelevel}[1]{%
+ \resizebox{\linewidth}{!}{%
+ \begin{tikzpicture}
+ \draw (0,0) -- (5,0);
+ \fill(#1,-.1) rectangle ($ (#1,0) + (0.1, .1) $);
+ \end{tikzpicture}
+ }
+}
+
+\ifdefinedcolor{sidecolor}{%
+ \colorlet{patterncolor}{sidecolor}
+}{%
+ \colorlet{patterncolor}{black}
+}
+
+\ifdefinedcolor{backsidecolor}{%
+ \colorlet{emptycolor}{backsidecolor}
+}{%
+ \colorlet{emptycolor}{white}
+}
+
+\usetikzlibrary{shapes.geometric,calc}
+\newcommand\starScore[2]{
+\pgfmathsetmacro\pgfxa{#1+1}
+\tikzstyle{scorestars}=[star, star points=5, star point ratio=2.25, draw,inner sep=0.15em,anchor=outer point 3]
+\begin{tikzpicture}[baseline]
+ \foreach \i in {1,...,#2} {
+ \pgfmathparse{(\i<=#1?"patterncolor":"emptycolor")}
+ \edef\starcolor{\pgfmathresult}
+ \draw (\i*1em,0) node[name=star\i,scorestars,fill=\starcolor] {};
+ }
+ \pgfmathparse{(#1>int(#1)?int(#1+1):0}
+ \let\partstar=\pgfmathresult
+ \ifnum\partstar>0
+ \pgfmathsetmacro\starpart{#1-(int(#1))}
+ \path [clip] ($(star\partstar.outer point 3)!(star\partstar.outer point 2)!(star\partstar.outer point 4)$) rectangle
+ ($(star\partstar.outer point 2 |- star\partstar.outer point 1)!\starpart!(star\partstar.outer point 1 -| star\partstar.outer point 5)$);
+ \fill (\partstar*1em,0) node[scorestars,fill=patterncolor] {};
+ \fi
+
+,\end{tikzpicture}
+}
+
+
+\newcommand\roundscore[2]{
+\pgfmathsetmacro\pgfxa{#1+1}
+\tikzstyle{scorestars}=[circle, draw, inner sep=0.15em,anchor=west]
+\begin{tikzpicture}[baseline]
+ \foreach \i in {1,...,#2} {
+ \pgfmathparse{(\i<=#1?"blue!70":"lightgray")}
+ \edef\starcolor{\pgfmathresult}
+ \draw (\i*1em,0) node[name=star\i,scorestars,fill=\starcolor] {};
+ }
+ \pgfmathparse{(#1>int(#1)?int(#1+1):0}
+ \let\partstar=\pgfmathresult
+ \ifnum\partstar>0
+ \pgfmathsetmacro\starpart{#1-(int(#1))}
+ \path [clip] (star\partstar.north west) rectangle
+ ($(star\partstar.south west)!\starpart!(star\partstar.south east)$);
+ \fill (\partstar*1em,0) node[scorestars,fill=blue!70] {};
+ \fi,
+
+\end{tikzpicture}
+}
+
+\newcommand{\DUrolestar}[1]{%
+ \resizebox{\linewidth}{!}{%
+ \starScore{#1}{5}
+ }
+}
+
+
+
diff --git a/model_2/resources/10_lists.tex b/model_2/resources/10_lists.tex new file mode 100755 index 0000000..b87845a --- /dev/null +++ b/model_2/resources/10_lists.tex @@ -0,0 +1,17 @@ +\usepackage{fontawesome} + +\newenvironment{DUCLASSdiamondlist}{\renewcommand{\labelitemi}{$\diamond$}}{} +\newenvironment{DUCLASSastlist}{\renewcommand{\labelitemi}{$\ast$}}{} +\newenvironment{DUCLASScdotlist}{\renewcommand{\labelitemi}{$\cdot$}}{} +\newenvironment{DUCLASSbulletlist}{\renewcommand{\labelitemi}{$\bullet$}}{} +\newenvironment{DUCLASSchecklist}{\renewcommand{\labelitemi}{\faCheck}}{} +\newenvironment{DUCLASSnonelist}{\renewcommand{\labelitemi}{}}{} + +\renewcommand{\labelitemi}{$\bullet$} +\renewcommand{\labelitemii}{$\cdot$} +\renewcommand{\labelitemiii}{$\diamond$} +\renewcommand{\labelitemiv}{$\ast$} + +% Réduit l'indentation pour les éléments des listes +\usepackage{enumitem} +\setlist[itemize,1]{leftmargin=.0cm} diff --git a/model_2/resources/10_nowidows.tex b/model_2/resources/10_nowidows.tex new file mode 100755 index 0000000..3b96931 --- /dev/null +++ b/model_2/resources/10_nowidows.tex @@ -0,0 +1,2 @@ +\widowpenalty=1000 +\clubpenalty=500 diff --git a/model_2/resources/10_title_style.tex b/model_2/resources/10_title_style.tex new file mode 100755 index 0000000..3f57a84 --- /dev/null +++ b/model_2/resources/10_title_style.tex @@ -0,0 +1,46 @@ +\usepackage{titlesec}
+
+
+\providecommand*{\DUdocumentsubtitle}[1]{{\EBLigatures\selectfont\em\LARGE\begin{flushright}#1\end{flushright}}}
+
+\makeatletter
+
+%\def\@subtitle{\relax}
+\newcommand{\subtitle}[1]{\gdef\@subtitle{#1}}
+
+\def\@maketitle{%
+ \begin{tcolorbox}[colback=sidecolor, sharp corners]
+ \begin{center}
+ \vspace*{1cm}
+ \textcolor{white}{\fontsize{1.2cm}{2cm}\CaviarDreamsFont\selectfont \@title}
+ \end{center}
+ \vspace*{1cm}
+ \end{tcolorbox}
+}
+\makeatother
+
+
+\newcommand{\periodafter}[1]{#1.}
+
+% Titre de niveau 1
+\titleformat{\section}
+ {\CaviarDreamsFont\selectfont\Large\centering}
+ {\thesection}
+ {0em}
+ {\vspace{1cm}}
+ []
+
+% Titre de niveau 2
+\titleformat{\subsection}
+ {\large}
+ {\thesubsection}
+ {}
+ {\textcolor{black!69}}
+
+% Titre de niveau 3
+\titleformat{\subsubsection}
+ {\bfseries\normalsize}
+ {\thesubsubsection}
+ {2em}
+ {}
+ {}
diff --git a/model_2/resources/90_ref.tex b/model_2/resources/90_ref.tex new file mode 100755 index 0000000..1760d18 --- /dev/null +++ b/model_2/resources/90_ref.tex @@ -0,0 +1,35 @@ +\usepackage[ + pdfencoding=auto, + linkbordercolor={0.5 0 0}, + citebordercolor={0 0 0.5}, + urlbordercolor=backsidecolor, + pdfborderstyle={/S/U/W 1} +]{hyperref} + +% Remove the underline for the footnotes +\providecommand*{\DUfootnotemark}[3]{% + \hypersetup{pdfborderstyle={/W 0}}% + \raisebox{1em}{\hypertarget{#1}{}}% + \hyperlink{#2}{\textsuperscript{#3}}% + \hypersetup{pdfborderstyle={/S/U/W 1}}% +} + +\providecommand{\DUfootnotetext}[4]{% + \begingroup% + \renewcommand{\thefootnote}{% + \protect\hypersetup{pdfborderstyle={/W 0}}% + \protect\raisebox{1em}{\protect\hypertarget{#1}{}}% + \protect\hyperlink{#2}{#3} + \protect\hypersetup{pdfborderstyle={/S/U/W 1}}% + }% + \footnotetext{#4}% + \endgroup% +} + +\let\tableofcontentsWithoutRefMarks\tableofcontents + +\renewcommand{\tableofcontents}{% + \protect\hypersetup{pdfborderstyle={/W 0}}% + \tableofcontentsWithoutRefMarks + \protect\hypersetup{pdfborderstyle={/S/U/W 1}}% +} diff --git a/model_2/resources/99_sidebar.tex b/model_2/resources/99_sidebar.tex new file mode 100755 index 0000000..a415a9f --- /dev/null +++ b/model_2/resources/99_sidebar.tex @@ -0,0 +1,48 @@ +\usepackage{eso-pic} +\usetikzlibrary{calc} + +\newlength{\notesep} + +\newlength{\sideBottomMargin} +\setlength{\sideBottomMargin}{0.2cm} + +\def\changemargin#1#2{\list{}{\rightmargin#2\leftmargin#1}\item[]} +\let\endchangemargin=\endlist + +% Une commande dédiée pour les notes de marge +\setlength{\columnsep}{0.5cm} +\columnratio{0.29} + +\ifdefinedcolor{backsidecolor}{% + \backgroundcolor{c[0]}{backsidecolor} +}{} + +\newcommand{\DUsidebar}[1]{% + \switchcolumn[0] + \begin{changemargin}{0.7cm}{0.7cm} + \LibertineFont\selectfont + \ifdefinedcolor{textsidecolor}{\color{textsidecolor}}{} + #1 + \end{changemargin} + \vspace{\notesep} + \switchcolumn +} +\usepackage[many]{tcolorbox} + +\newcommand{\DUtitletitle}[1]{% + \begin{tcolorbox}[colback=sidecolor, sharp corners]% + \begin{center}% + \begin{CaviarDreamsBoldFont}% + {\textbf\selectfont\color{white}{\scriptsize\uppercase{#1}}}% + \end{CaviarDreamsBoldFont}% + \end{center} + \end{tcolorbox} + } + + +\AtEndDocument{ + \flushpage + \end{paracol} +} +\let\oldtitle\maketitle +\renewcommand{\maketitle}{{\oldtitle}\begin{paracol}{2}} diff --git a/model_2/resources/modules b/model_2/resources/modules new file mode 100755 index 0000000..ed4db20 --- /dev/null +++ b/model_2/resources/modules @@ -0,0 +1,13 @@ +tikz
+parskip # Ne pas indenter la premiere ligne d'un paragraphe
+setspace
+
+# Polices mathematiques.
+amsmath
+amsfonts
+amssymb
+
+DUsmallcaps
+pgfornament
+paracol
+lipsum
|