fix optional argument for europass
This commit is contained in:
parent
0bccdc9399
commit
37c5802d7a
@ -19,8 +19,6 @@ A pandoc LaTeX template for creating a curriculum vitae.
|
|||||||
|
|
||||||
*Pancv* uses packages [moderncv](https://launchpad.net/moderncv) and [europasscv](https://github.com/gmazzamuto/europasscv).
|
*Pancv* uses packages [moderncv](https://launchpad.net/moderncv) and [europasscv](https://github.com/gmazzamuto/europasscv).
|
||||||
|
|
||||||
***Warning***: Europass support is still experimental.
|
|
||||||
|
|
||||||
### Installation
|
### Installation
|
||||||
|
|
||||||
- Install pandoc and a LaTeX distribution.
|
- Install pandoc and a LaTeX distribution.
|
||||||
@ -63,6 +61,8 @@ For example, you can get the same result as the [previous example](#usage) throu
|
|||||||
docker run --rm --volume "`pwd`:/data" --user `id -u`:`id -g` norangebit/pandocker pandoc cv.yaml --template pancv -o cv.pdf
|
docker run --rm --volume "`pwd`:/data" --user `id -u`:`id -g` norangebit/pandocker pandoc cv.yaml --template pancv -o cv.pdf
|
||||||
```
|
```
|
||||||
|
|
||||||
|
***Warning***: Europass is still not supported via docker.
|
||||||
|
|
||||||
### Variables
|
### Variables
|
||||||
|
|
||||||
- `europass` (*boolean*) equal to `true` if you want a curriculum in *europass* format (default to false)
|
- `europass` (*boolean*) equal to `true` if you want a curriculum in *europass* format (default to false)
|
||||||
@ -99,8 +99,6 @@ docker run --rm --volume "`pwd`:/data" --user `id -u`:`id -g` norangebit/pandock
|
|||||||
|
|
||||||
*Pancv* utilizza il pacchetto [moderncv](https://launchpad.net/moderncv) e il pacchetto [europasscv](https://github.com/gmazzamuto/europasscv).
|
*Pancv* utilizza il pacchetto [moderncv](https://launchpad.net/moderncv) e il pacchetto [europasscv](https://github.com/gmazzamuto/europasscv).
|
||||||
|
|
||||||
***Attenzione***: Il supporto al formato europass è ancora in fase sperimentale.
|
|
||||||
|
|
||||||
### Installazione
|
### Installazione
|
||||||
|
|
||||||
- Installare pandoc e una distribuzione LaTeX.
|
- Installare pandoc e una distribuzione LaTeX.
|
||||||
@ -143,6 +141,8 @@ Per esempio si può ottenere lo stesso risultato dell'[esempio precedente](#uso)
|
|||||||
docker run --rm --volume "`pwd`:/data" --user `id -u`:`id -g` norangebit/pandocker pandoc cv.yaml --template pancv -o cv.pdf
|
docker run --rm --volume "`pwd`:/data" --user `id -u`:`id -g` norangebit/pandocker pandoc cv.yaml --template pancv -o cv.pdf
|
||||||
```
|
```
|
||||||
|
|
||||||
|
***Attenzione***: Europass ancora non è supportato tramite docker.
|
||||||
|
|
||||||
### Variabili
|
### Variabili
|
||||||
|
|
||||||
- `europass` (*boolean*) pari a `true` se si desidera un curriculum in formato *europass*
|
- `europass` (*boolean*) pari a `true` se si desidera un curriculum in formato *europass*
|
||||||
|
Binary file not shown.
@ -14,7 +14,6 @@ cron-sections:
|
|||||||
- year: 2018--2020
|
- year: 2018--2020
|
||||||
degree: Job Title
|
degree: Job Title
|
||||||
institution: Institution
|
institution: Institution
|
||||||
city: City
|
|
||||||
grade: Grade
|
grade: Grade
|
||||||
- section: Education
|
- section: Education
|
||||||
entries:
|
entries:
|
||||||
@ -28,7 +27,6 @@ cron-sections:
|
|||||||
degree: Degree
|
degree: Degree
|
||||||
institution: Institution
|
institution: Institution
|
||||||
city: City
|
city: City
|
||||||
grade: Grade
|
|
||||||
description: Insert here the description
|
description: Insert here the description
|
||||||
sections:
|
sections:
|
||||||
- section: Languages
|
- section: Languages
|
||||||
|
15
pancv.tex
15
pancv.tex
@ -16,7 +16,10 @@ $if(europass)$
|
|||||||
}
|
}
|
||||||
|
|
||||||
\newcommand{\pancvaddress}[2]{
|
\newcommand{\pancvaddress}[2]{
|
||||||
\ecvaddress{#1, #2}
|
\ecvaddress{%
|
||||||
|
#1%
|
||||||
|
\ifthenelse{\isempty{#2}{}}{}{, #2}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
\newcommand{\pancvsection}[1]{
|
\newcommand{\pancvsection}[1]{
|
||||||
@ -24,12 +27,12 @@ $if(europass)$
|
|||||||
}
|
}
|
||||||
|
|
||||||
\newcommand{\pancventry}[6]{
|
\newcommand{\pancventry}[6]{
|
||||||
\ecvitem{#1}{
|
\ecvitem{#1}{%
|
||||||
\textbf{#2},
|
\textbf{#2},
|
||||||
#3.
|
#3%
|
||||||
\ifthenelse{\isempty{#4}}{}{#4}
|
\ifthenelse{\isempty{#4}}{.}{, #4.}%
|
||||||
\ifthenelse{\isempty{#5}}{}{#5.}
|
\ifthenelse{\isempty{#5}}{}{ #5.}%
|
||||||
\ifthenelse{\isempty{#6}}{}{\newline #6}}
|
\ifthenelse{\isempty{#6}}{}{\newline #6}}%
|
||||||
}
|
}
|
||||||
|
|
||||||
\newcommand{\pancvitem}[2]{
|
\newcommand{\pancvitem}[2]{
|
||||||
|
Loading…
Reference in New Issue
Block a user