content
This commit is contained in:
parent
7a0cff6477
commit
09f90ba7f4
1 changed files with 69 additions and 1 deletions
70
bywyd.sty
70
bywyd.sty
|
@ -1,3 +1,71 @@
|
||||||
\NeedsTeXFormat{LaTeX2e}
|
\NeedsTeXFormat{LaTeX2e}
|
||||||
|
|
||||||
\ProvidesPackage{bywyd}[2023/11/12 LimeCV Template]
|
\ProvidesPackage{bywyd}[2023/11/12 LimeCV template]
|
||||||
|
|
||||||
|
\newif\ifoption@fr
|
||||||
|
\DeclareOption{fr}{\option@frtrue}
|
||||||
|
\newif\ifoption@blue
|
||||||
|
\DeclareOption{blue}{\option@bluetrue}
|
||||||
|
|
||||||
|
\ProcessOptions
|
||||||
|
\ifoption@fr
|
||||||
|
% Langue
|
||||||
|
\RequirePackage[french]{babel}
|
||||||
|
|
||||||
|
% Language
|
||||||
|
\AtBeginDocument{
|
||||||
|
\cvSetLanguage{french}
|
||||||
|
\pgfkeys{/@cv/names/education = Formations}
|
||||||
|
\pgfkeys{/@cv/names/experience = Expériences professionnelles}
|
||||||
|
}
|
||||||
|
\fi
|
||||||
|
\ifoption@blue
|
||||||
|
% Thème bleue
|
||||||
|
\definecolor{cvGreenLight}{HTML}{99ecff} % Barre
|
||||||
|
\definecolor{cvGreen}{HTML}{75b0d8} % Couleur accent
|
||||||
|
\definecolor{cvAccent}{HTML}{3a3e66} % Texte barre
|
||||||
|
\fi
|
||||||
|
|
||||||
|
\RequirePackage[margin=\cvMargin,top=0pt,bottom=0pt]{geometry}
|
||||||
|
|
||||||
|
% Données
|
||||||
|
\newcommand{\cvAuthorName}[2]{\gdef\@authorfname{#1}\gdef\@authorlname{#2}}
|
||||||
|
\newcommand{\cvDocumentTitle}[1]{\gdef\@documenttitle{#1}}
|
||||||
|
|
||||||
|
\newcommand{\cvFirstname}{\@authorfname}
|
||||||
|
\newcommand{\cvLastname}{\textsc{\selectfont \@authorlname}}
|
||||||
|
\newcommand{\cvTitle}{\@documenttitle}
|
||||||
|
|
||||||
|
% Police
|
||||||
|
\setmainfont[Numbers={Monospaced}]{CMU Bright}
|
||||||
|
|
||||||
|
% Métadonnées
|
||||||
|
\AtBeginDocument{
|
||||||
|
\hypersetup{pdfauthor={\@authorfname\ \@authorlname},
|
||||||
|
pdftitle={\@authorfname\ \@authorlname\ – \@documenttitle},
|
||||||
|
pdfsubject={curriculum vit\ae\ de \@authorfname\ \@authorlname},
|
||||||
|
pdfkeywords={\@authorfname\ \@authorlname, curriculum vit\ae},
|
||||||
|
pdfcreator={LaTeX with limecv class and bywyd template},
|
||||||
|
% Cache les liens
|
||||||
|
hidelinks}
|
||||||
|
}
|
||||||
|
|
||||||
|
% Alias
|
||||||
|
\newcommand{\tb}{\textbullet}
|
||||||
|
|
||||||
|
% Police
|
||||||
|
\setmainfont[Numbers={Monospaced}]{CMU Bright}
|
||||||
|
|
||||||
|
% Pas de notes pour les compétences
|
||||||
|
\makeatletter
|
||||||
|
\NewDocumentCommand{\cvSkillTwoNR}{mm}{
|
||||||
|
\ifcv@firstskill
|
||||||
|
\color{black}
|
||||||
|
\g@addto@macro\cv@skillsTable{\tb\ #1 & \tb\ #2}
|
||||||
|
\cv@firstskillfalse
|
||||||
|
\else
|
||||||
|
\color{black}
|
||||||
|
\g@addto@macro\cv@skillsTable{\\[\cvSkillSep]\tb\ #1 & \tb\ #2}
|
||||||
|
\fi
|
||||||
|
}
|
||||||
|
\makeatother
|
||||||
|
|
Loading…
Reference in a new issue