Browse Source

Merge branch 'master' into lambtho12-publications

lambtho12-publications
Christophe ROGER 1 year ago
parent
commit
89ea8985eb
6 changed files with 43 additions and 15 deletions
  1. +1
    -1
      .circleci/config.yml
  2. +1
    -1
      README.md
  3. +11
    -0
      example/cv-blx.bib
  4. +16
    -7
      example/cv.run.xml
  5. +1
    -1
      example/cv.tex
  6. +13
    -5
      yaac-another-awesome-cv.cls

+ 1
- 1
.circleci/config.yml View File

@@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: ubuntu:disco
- image: ubuntu:jammy
steps:
- run:
name: Git installation

+ 1
- 1
README.md View File

@@ -146,7 +146,7 @@ Sections share the left column size (2.5cm by default). You can change this defa
% Usage: \setleftcolumnlength{1.5cm} to change the left column lengtyh to 1.5cm
% I recommend to use a size between 1.5cm to 2.5cm
\setleftcolumnlength{1.5cm}
``
```


### Construct the _comptences_ or _skills_ section

+ 11
- 0
example/cv-blx.bib View File

@@ -0,0 +1,11 @@
@Comment{$ biblatex control file $}
@Comment{$ biblatex version 2.9 $}
Do not modify this file!

This is an auxiliary file used by the 'biblatex' package.
This file may safely be deleted. It will be recreated as
required.

@Control{biblatex-control,
options = {2.9:0:0:1:0:1:1:0:0:1:0:2:3:1:79:+:nyt},
}

+ 16
- 7
example/cv.run.xml View File

@@ -44,17 +44,21 @@
<internal package="biblatex" priority="9" active="0">
<generic>latex</generic>
<provides type="dynamic">
<file>cv.bcf</file>
<file>cv.aux</file>
<file>cv-blx.bib</file>
</provides>
<requires type="dynamic">
<file>cv.bbl</file>
</requires>
<requires type="static">
<file>blx-dm.def</file>
<file>blx-unicode.def</file>
<file>blx-compat.def</file>
<file>blx-bibtex.def</file>
<file>biblatex.def</file>
<file>authoryear.bbx</file>
<file>blx-natbib.def</file>
<file>standard.bbx</file>
<file>authoryear.bbx</file>
<file>authoryear.cbx</file>
<file>biblatex.cfg</file>
<file>french.lbx</file>
@@ -62,13 +66,14 @@
</requires>
</internal>
<external package="biblatex" priority="5" active="0">
<generic>biber</generic>
<generic>bibtex</generic>
<cmdline>
<binary>biber</binary>
<binary>bibtex</binary>
<option>-min-crossrefs 2</option>
<infile>cv</infile>
</cmdline>
<input>
<file>cv.bcf</file>
<file>cv.aux</file>
</input>
<output>
<file>cv.bbl</file>
@@ -77,10 +82,14 @@
<file>cv.bbl</file>
</provides>
<requires type="dynamic">
<file>cv.bcf</file>
<file>cv.aux</file>
<file>cv-blx.bib</file>
</requires>
<requires type="editable">
<file>sample.bib</file>
<file>my_publications.bib</file>
</requires>
<requires type="static">
<file>biblatex.bst</file>
</requires>
</external>
</requests>

+ 1
- 1
example/cv.tex View File

@@ -46,6 +46,6 @@
%\input{section_interets} % Section intérêts
\input{section_projets}
\input{section_references} % Section références
\input{section_publications} % Section publications
\input{section_publications} % Section publications

\end{document}

+ 13
- 5
yaac-another-awesome-cv.cls View File

@@ -17,7 +17,7 @@
%
% This work consists of the files awesome-source-cv.cls

\ProvidesClass{yaac-another-awesome-cv}[2019/09/10 v2.2.0 'YAAC: Another Awesome CV' Class]
\ProvidesClass{yaac-another-awesome-cv}[2020/03/24 v2.3.1 'YAAC: Another Awesome CV' Class]

\def\@@ptsize{10pt}

@@ -170,15 +170,23 @@
}

%New length definition
\newlength{\rightcolumnlength}
\setlength{\rightcolumnlength}{15.3cm minus 1cm}
\newlength{\fulllength}
\setlength{\fulllength}{17.8cm}

\newlength{\leftcolumnlength}
\setlength{\leftcolumnlength}{2.5cm}

\newlength{\rightcolumnlength}
%\setlength{\rightcolumnlength}{15.3cm minus 1cm}
%\setlength{\rightcolumnlength}{\dimexpr(\fulllength-\leftcolumnlength)\relax}
\setlength{\rightcolumnlength}{\dimexpr(\fulllength-\leftcolumnlength)\relax}

% Override default left column length of (2.5cm)
% Usage: \setleftcolumnlength{<length>}
\newcommand{\setleftcolumnlength}[1]{\setlength{\leftcolumnlength}{#1}}
\newcommand{\setleftcolumnlength}[1]{
\setlength{\leftcolumnlength}{#1}
\setlength{\rightcolumnlength}{\dimexpr(\fulllength-\leftcolumnlength)\relax}
}

% Font Awesome icons aliases
\newcommand{\mailSymbol}{\faAt}
@@ -451,7 +459,7 @@
\newcommand\consultantexperience[9]{
\textbf{#1} & \textbf{#2, \textsc{#3}, #4} \\*
\textbf{#5} & \emph{#6} pour \textsc{#7} \\*
& \begin{minipage}[t]{\rightcolumnlength}
& \begin{minipage}[t]{\rightcolumnlength}
#8
\end{minipage} \\*
& \footnotesize{\foreach \n in {#9}{\cvtag{\n}}} \\

Loading…
Cancel
Save