summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/europecv
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-12-24 03:00:35 +0000
committerNorbert Preining <norbert@preining.info>2019-12-24 03:00:35 +0000
commitc389b7448b0983c777962eb6889c11cc754b5b01 (patch)
tree8484a119e2540995c81db512dc8267b641012296 /macros/latex/contrib/europecv
parenta1dedaefa2becaafcd09daa0489ec89a84908e34 (diff)
CTAN sync 201912240300
Diffstat (limited to 'macros/latex/contrib/europecv')
-rw-r--r--macros/latex/contrib/europecv/CHANGELOG.rst5
-rw-r--r--macros/latex/contrib/europecv/CONTRIBUTING.md62
-rw-r--r--macros/latex/contrib/europecv/README.md2
-rw-r--r--macros/latex/contrib/europecv/ecvbg.def7
-rw-r--r--macros/latex/contrib/europecv/ecvca.def2
-rw-r--r--macros/latex/contrib/europecv/ecvcs.def7
-rw-r--r--macros/latex/contrib/europecv/ecvda.def7
-rw-r--r--macros/latex/contrib/europecv/ecvde.def7
-rw-r--r--macros/latex/contrib/europecv/ecven.def9
-rw-r--r--macros/latex/contrib/europecv/ecves.def6
-rw-r--r--macros/latex/contrib/europecv/ecvet.def7
-rw-r--r--macros/latex/contrib/europecv/ecvfi.def7
-rw-r--r--macros/latex/contrib/europecv/ecvfr.def7
-rw-r--r--macros/latex/contrib/europecv/ecvgl.def7
-rw-r--r--macros/latex/contrib/europecv/ecvgr.def5
-rw-r--r--macros/latex/contrib/europecv/ecvhu.def7
-rw-r--r--macros/latex/contrib/europecv/ecvis.def7
-rw-r--r--macros/latex/contrib/europecv/ecvit.def7
-rw-r--r--macros/latex/contrib/europecv/ecvlt.def7
-rw-r--r--macros/latex/contrib/europecv/ecvlv.def2
-rw-r--r--macros/latex/contrib/europecv/ecvmt.def2
-rw-r--r--macros/latex/contrib/europecv/ecvnl.def2
-rw-r--r--macros/latex/contrib/europecv/ecvno.def2
-rw-r--r--macros/latex/contrib/europecv/ecvpl.def2
-rw-r--r--macros/latex/contrib/europecv/ecvpt.def2
-rw-r--r--macros/latex/contrib/europecv/ecvro.def2
-rw-r--r--macros/latex/contrib/europecv/ecvsk.def2
-rw-r--r--macros/latex/contrib/europecv/ecvsl.def2
-rw-r--r--macros/latex/contrib/europecv/ecvsr.def4
-rw-r--r--macros/latex/contrib/europecv/ecvsv.def2
-rw-r--r--macros/latex/contrib/europecv/europecv.cls9
-rw-r--r--macros/latex/contrib/europecv/europecv.pdfbin680527 -> 683212 bytes
-rw-r--r--macros/latex/contrib/europecv/europecv.tex33
-rw-r--r--macros/latex/contrib/europecv/templates/cv_template_academic_en.pdfbin71712 -> 51531 bytes
-rw-r--r--macros/latex/contrib/europecv/templates/cv_template_academic_en.tex6
-rw-r--r--macros/latex/contrib/europecv/templates/cv_template_en.pdfbin55792 -> 38767 bytes
-rw-r--r--macros/latex/contrib/europecv/templates/cv_template_en.tex2
37 files changed, 176 insertions, 73 deletions
diff --git a/macros/latex/contrib/europecv/CHANGELOG.rst b/macros/latex/contrib/europecv/CHANGELOG.rst
index cdd7c50e3e..2cdd52fa47 100644
--- a/macros/latex/contrib/europecv/CHANGELOG.rst
+++ b/macros/latex/contrib/europecv/CHANGELOG.rst
@@ -2,6 +2,11 @@
Changelog for package europecv
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+2019.12.23
+----------
+* Integrated the nobranding features
+* Contributors: Marc-Andre Hermanns
+
2019.03.19
----------
* Now you can integrate your YouTube channel into your CV
diff --git a/macros/latex/contrib/europecv/CONTRIBUTING.md b/macros/latex/contrib/europecv/CONTRIBUTING.md
index 1b8e73d7c2..a750e77578 100644
--- a/macros/latex/contrib/europecv/CONTRIBUTING.md
+++ b/macros/latex/contrib/europecv/CONTRIBUTING.md
@@ -47,4 +47,66 @@ There is some basic requirement for us to merge a pull request:
In your code:
- Make sure the coding style of your code follows the style of the file.
+
+## Workflow
+
+### Stable branch: `master`
+
+The `master` branch is stable and **should not receive new features**. Only **bug fixes** are accepted.
+
+This is the typical workflow to fix a bug in the master branch.
+
+* Identify a bug that does not require breaking changes of the API/ABI.
+* Open an issue on github.
+* Add some label (FIXME which label?).
+* Assign the issue to yourself.
+* Create a new branch starting from the `master` branch:
+
+```
+git fetch origin
+git checkout -b <branch_name> origin/master
+```
+
+* Fix the bug and make one or more commits.
+* [Push the branch on your fork and create a pull request](https://help.github.com/categories/collaborating-on-projects-using-pull-requests/).
+* Wait for someone else to review your fix and merge your pull request.
+* Your fix is now in the `master` branch, now you need to port it to the `devel`
+ branch.
+* Ensure that your branches are in sync with `origin`:
+
+```
+git checkout master
+git pull --rebase origin master
+git checkout devel
+git pull --rebase origin devel
+```
+
+ * Merge master into devel and eventually fix the conflicts.
+
+```
+git merge master
+```
+
+##### Work in progress PR
+As final note, in case you need to start a PR but you deem it still **work-in-progress** and don't want anyone to merge it by mistake, do the following:
+- Put `[WIP]` at the beginning of the PR title.
+- Mark the PR with the label `"Status: In Progress"`.
+
+Once you're happy about your work, just remove the `[WIP]` tag as well as the label, and drop a message within the PR to notify the community that reviews are welcome and merging is now possible.
+
+### Development branch: `dev`
+
+
+We use the branch `dev` to collect the ongoing work, which is given in terms of **new features** and **bug fixes**.
+
+When we introduce a new feature that will cause downstream projects to be aware of such update, we do increase the tweak number (always sticking to _odd numbers_).
+
+When we decide to publish these new features in a new software release (roughly each _3 months_), we merge the new modifications into `master`, doing:
+
+```sh
+git checkout master
+git merge --no-ff devel
+git push origin master
+```
+
diff --git a/macros/latex/contrib/europecv/README.md b/macros/latex/contrib/europecv/README.md
index f4404ae9fc..667c6c76c1 100644
--- a/macros/latex/contrib/europecv/README.md
+++ b/macros/latex/contrib/europecv/README.md
@@ -1,4 +1,4 @@
-[![All Contributors](https://img.shields.io/badge/all_contributors-19-orange.svg?style=flat-square)](#contributors)
+[![All Contributors](https://img.shields.io/badge/all_contributors-20-orange.svg?style=flat-square)](#contributors)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
[![first-timers-only](https://img.shields.io/badge/first--timers--only-friendly-blue.svg?style=flat-square)](https://www.firsttimersonly.com/)
diff --git a/macros/latex/contrib/europecv/ecvbg.def b/macros/latex/contrib/europecv/ecvbg.def
index 478e528d3b..27e92b9b8d 100644
--- a/macros/latex/contrib/europecv/ecvbg.def
+++ b/macros/latex/contrib/europecv/ecvbg.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation yet to be finished, 2019/03/19
+% Translation yet to be finished, 12/23/2019
\ProvidesFile{ecvbg.def}[europecv Bulgarian definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Лична информация}}
@@ -39,6 +39,7 @@
\def\ecv@cefindepkey{\ecv@utf{Ниво на владеене - самостоятелно}}
\def\ecv@cefprofkey{\ecv@utf{Ниво на владеене - свободно}}
-\renewcommand*\ecvtitle{\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
-r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}\\[5pt]
+\renewcommand*{\ecvbranding}{\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
+r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}\\[5pt]}}
+\renewcommand*\ecvtitle{\ecvbranding\ecv@utf{
\Large\textbf{а\ecv@kern в\ecv@kern т\ecv@kern о\ecv@kern б\ecv@kern и\ecv@kern о\ecv@kern г\ecv@kern р\ecv@kern а\ecv@kern ф\ecv@kern и\ecv@kern я}}}
diff --git a/macros/latex/contrib/europecv/ecvca.def b/macros/latex/contrib/europecv/ecvca.def
index dba0ece6e5..cb58bc786f 100644
--- a/macros/latex/contrib/europecv/ecvca.def
+++ b/macros/latex/contrib/europecv/ecvca.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation yet to be finished, 2019/03/19
+% Translation yet to be finished, 12/23/2019
\ProvidesFile{ecvca.def}[europecv Catalan definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Informaci\'o personal}}
diff --git a/macros/latex/contrib/europecv/ecvcs.def b/macros/latex/contrib/europecv/ecvcs.def
index f4b147ef1a..1bdf92c59f 100644
--- a/macros/latex/contrib/europecv/ecvcs.def
+++ b/macros/latex/contrib/europecv/ecvcs.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation yet to be finished, 2019/03/19
+% Translation yet to be finished, 12/23/2019
\ProvidesFile{ecvcs.def}[europecv Czech definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Osobn{\'\i} {\'u}daje}}
@@ -39,8 +39,9 @@
\def\ecv@cefindepkey{\ecv@utf{Samostatn{\'y} u{\v z}ivatel}}
\def\ecv@cefprofkey{\ecv@utf{Zku{\v s}en{\'y} u{\v z}ivatel}}
-\renewcommand*\ecvtitle{\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
-r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}\\[5pt]
+\renewcommand*{\ecvbranding}{\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
+r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}\\[5pt]}}
+\renewcommand*\ecvtitle{\ecvbranding\ecv@utf{
\Large\textbf{{\v z}\ecv@kern i\ecv@kern v\ecv@kern o\ecv@kern
t\ecv@kern o\ecv@kern p\ecv@kern i\ecv@kern s}}}
diff --git a/macros/latex/contrib/europecv/ecvda.def b/macros/latex/contrib/europecv/ecvda.def
index 3116b82aca..e3d89ec5d8 100644
--- a/macros/latex/contrib/europecv/ecvda.def
+++ b/macros/latex/contrib/europecv/ecvda.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation yet to be finished, 2019/03/19
+% Translation yet to be finished, 12/23/2019
\ProvidesFile{ecvda.def}[europecv Danish definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Personlige oplysninger}}
@@ -39,8 +39,9 @@
\def\ecv@cefindepkey{\ecv@utf{Selvst\ae ndig sprogbruger}}
\def\ecv@cefprofkey{\ecv@utf{Kompetent sprogbruger}}
-\renewcommand*\ecvtitle{\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
-r\ecv@kern o\ecv@kern p\ecv@kern \ae\ecv@kern i\ecv@kern s\ecv@kern k}\\[5pt]
+\renewcommand*{\ecvbranding}{\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
+r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}\\[5pt]}}
+\renewcommand*\ecvtitle{\ecvbranding\ecv@utf{
\Large\textbf{c\ecv@kern u\ecv@kern r\ecv@kern r\ecv@kern
i\ecv@kern c\ecv@kern u\ecv@kern l\ecv@kern u\ecv@kern m \ecv@kern v\ecv@kern
i\ecv@kern t\ecv@kern a\ecv@kern e}}}
diff --git a/macros/latex/contrib/europecv/ecvde.def b/macros/latex/contrib/europecv/ecvde.def
index 65971af70f..935507c0f3 100644
--- a/macros/latex/contrib/europecv/ecvde.def
+++ b/macros/latex/contrib/europecv/ecvde.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
\ProvidesFile{ecvde.def}[europecv German definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Angaben zur Person}}
@@ -39,7 +39,8 @@
\def\ecv@cefindepkey{\ecv@utf{Selbst\"andige Sprachverwendung}}
\def\ecv@cefprofkey{\ecv@utf{Kompetente Sprachverwendung}}
-\renewcommand*\ecvtitle{\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
-r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}\\[5pt]
+\renewcommand*{\ecvbranding}{\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
+r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}\\[5pt]}}
+\renewcommand*\ecvtitle{\ecvbranding\ecv@utf{
\Large\textbf{L\ecv@kern e\ecv@kern b\ecv@kern e\ecv@kern
n\ecv@kern s\ecv@kern l\ecv@kern a\ecv@kern u\ecv@kern f\ecv@kern}}}
diff --git a/macros/latex/contrib/europecv/ecven.def b/macros/latex/contrib/europecv/ecven.def
index 29c6ba92e2..79a8457add 100644
--- a/macros/latex/contrib/europecv/ecven.def
+++ b/macros/latex/contrib/europecv/ecven.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
\ProvidesFile{ecven.def}[europecv English definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Personal information}}
@@ -39,8 +39,9 @@
\def\ecv@cefindepkey{\ecv@utf{Independent user}}
\def\ecv@cefprofkey{\ecv@utf{Proficient user}}
-\providecommand*{\ecvtitle}{\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
-r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}\\[5pt]
+\providecommand*{\ecvbranding}{\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
+r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}\\[5pt]}}
+\providecommand*{\ecvtitle}{\ecvbranding\ecv@utf{
\Large\textbf{C\ecv@kern u\ecv@kern r\ecv@kern r\ecv@kern
i\ecv@kern c\ecv@kern u\ecv@kern l\ecv@kern u\ecv@kern m \ecv@kern V\ecv@kern
-i\ecv@kern t\ecv@kern a\ecv@kern e}}} \ No newline at end of file
+i\ecv@kern t\ecv@kern a\ecv@kern e}}}
diff --git a/macros/latex/contrib/europecv/ecves.def b/macros/latex/contrib/europecv/ecves.def
index ef29371b2f..1204f4f67b 100644
--- a/macros/latex/contrib/europecv/ecves.def
+++ b/macros/latex/contrib/europecv/ecves.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
\ProvidesFile{ecves.def}[europecv Spanish definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Informaci\'on personal}}
@@ -39,7 +39,7 @@
\def\ecv@cefindepkey{\ecv@utf{Usuario independiente}}
\def\ecv@cefprofkey{\ecv@utf{Usuario competente}}
-\renewcommand*\ecvtitle{\ecv@utf{\Large\textbf{C\ecv@kern u\ecv@kern r\ecv@kern r\ecv@kern i\ecv@kern c\ecv@kern u\ecv@kern l\ecv@kern u\ecv@kern m \ecv@kern v\ecv@kern i\ecv@kern t\ecv@kern a\ecv@kern e}\\[5pt]
-\Large\textbf{E\ecv@kern u\ecv@kern
+\renewcommand*{\ecvbranding}{\\[5pt]\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}}}
+\renewcommand*\ecvtitle{\ecv@utf{\Large\textbf{C\ecv@kern u\ecv@kern r\ecv@kern r\ecv@kern i\ecv@kern c\ecv@kern u\ecv@kern l\ecv@kern u\ecv@kern m \ecv@kern v\ecv@kern i\ecv@kern t\ecv@kern a\ecv@kern e}}\ecvbranding}
diff --git a/macros/latex/contrib/europecv/ecvet.def b/macros/latex/contrib/europecv/ecvet.def
index 1c0be0f563..8cd2cf42a7 100644
--- a/macros/latex/contrib/europecv/ecvet.def
+++ b/macros/latex/contrib/europecv/ecvet.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
\ProvidesFile{ecvet.def}[europecv Estonian definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Isikuandmed}}
@@ -39,8 +39,9 @@
\def\ecv@cefindepkey{\ecv@utf{Iseseisev keelekasutus}}
\def\ecv@cefprofkey{\ecv@utf{Vaba keelekasutus}}
-\renewcommand*\ecvtitle{\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
-r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s\ecv@kern i}\\[5pt]
+\renewcommand*{\ecvbranding}{\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
+r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}\\[5pt]}}
+\renewcommand*\ecvtitle{\ecvbranding\ecv@utf{
\Large\textbf{c\ecv@kern u\ecv@kern r\ecv@kern r\ecv@kern
i\ecv@kern c\ecv@kern u\ecv@kern l\ecv@kern u\ecv@kern m \ecv@kern v\ecv@kern
i\ecv@kern t\ecv@kern a\ecv@kern e}}}
diff --git a/macros/latex/contrib/europecv/ecvfi.def b/macros/latex/contrib/europecv/ecvfi.def
index 5bf347c52b..dca1fab07d 100644
--- a/macros/latex/contrib/europecv/ecvfi.def
+++ b/macros/latex/contrib/europecv/ecvfi.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
\ProvidesFile{ecvfi.def}[europecv Finnish definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Henkil\"otiedot}}
@@ -39,8 +39,9 @@
\def\ecv@cefindepkey{\ecv@utf{Itsen\"aisen kielenk\"aytt\"aj\"an kielitaito}}
\def\ecv@cefprofkey{\ecv@utf{Taitavan kielenk\"aytt\"aj\"an kielitaito}}
-\renewcommand*\ecvtitle{\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
-r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s\ecv@kern}\\[5pt]
+\renewcommand*{\ecvbranding}{\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
+r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}\\[5pt]}}
+\renewcommand*\ecvtitle{\ecvbranding\ecv@utf{
\Large\textbf{a\ecv@kern n\ecv@kern s\ecv@kern i\ecv@kern
o\ecv@kern l\ecv@kern u\ecv@kern e\ecv@kern t\ecv@kern t\ecv@kern
e\ecv@kern l\ecv@kern o\ecv@kern m\ecv@kern a\ecv@kern l\ecv@kern
diff --git a/macros/latex/contrib/europecv/ecvfr.def b/macros/latex/contrib/europecv/ecvfr.def
index 575717a755..d2904e9b29 100644
--- a/macros/latex/contrib/europecv/ecvfr.def
+++ b/macros/latex/contrib/europecv/ecvfr.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
\ProvidesFile{ecvfr.def}[europecv French definitions]
% Informations personnelles
\def\ecv@infosectionkey{\ecv@utf{Informations personnelles}}
@@ -39,6 +39,7 @@
\def\ecv@cefindepkey{\ecv@utf{Utilisateur Ind\'ependant}}
\def\ecv@cefprofkey{\ecv@utf{Utilisateur exp\'eriment\'e}}
-\renewcommand*\ecvtitle{\ecv@utf{\Large\textbf{C\ecv@kern u\ecv@kern r\ecv@kern r\ecv@kern i\ecv@kern c\ecv@kern u\ecv@kern l\ecv@kern u\ecv@kern m \ecv@kern v\ecv@kern i\ecv@kern t\ecv@kern a\ecv@kern e}\\[5pt]
-\Large\textbf{E\ecv@kern u\ecv@kern
+\renewcommand*{\ecvbranding}{\\[5pt]\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}}}
+\renewcommand*\ecvtitle{\ecv@utf{\Large\textbf{C\ecv@kern u\ecv@kern r\ecv@kern r\ecv@kern i\ecv@kern c\ecv@kern u\ecv@kern l\ecv@kern u\ecv@kern m \ecv@kern v\ecv@kern i\ecv@kern t\ecv@kern a\ecv@kern e
+}}\ecvbranding}
diff --git a/macros/latex/contrib/europecv/ecvgl.def b/macros/latex/contrib/europecv/ecvgl.def
index 0b589af844..1842a4b387 100644
--- a/macros/latex/contrib/europecv/ecvgl.def
+++ b/macros/latex/contrib/europecv/ecvgl.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
\ProvidesFile{ecvgl.def}[europecv Galician definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Informaci\'on persoal}}
@@ -39,7 +39,8 @@
\def\ecv@cefindepkey{\ecv@utf{Usuario \mbox{independente}}}
\def\ecv@cefprofkey{\ecv@utf{Usuario \mbox{competente}}}
-\renewcommand*\ecvtitle{\ecv@utf{\Large\textbf{C\ecv@kern u\ecv@kern r\ecv@kern r\ecv@kern i\ecv@kern c\ecv@kern u\ecv@kern l\ecv@kern u\ecv@kern m \ecv@kern v\ecv@kern i\ecv@kern t\ecv@kern a\ecv@kern e}\\[5pt]
-\Large\textbf{E\ecv@kern u\ecv@kern
+\renewcommand*{\ecvbranding}{\\[5pt]\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}}}
+\renewcommand*\ecvtitle{\ecv@utf{\Large\textbf{C\ecv@kern u\ecv@kern r\ecv@kern r\ecv@kern i\ecv@kern c\ecv@kern u\ecv@kern l\ecv@kern u\ecv@kern m \ecv@kern v\ecv@kern i\ecv@kern t\ecv@kern a\ecv@kern e
+\ecvbranding}}}
diff --git a/macros/latex/contrib/europecv/ecvgr.def b/macros/latex/contrib/europecv/ecvgr.def
index a32b8a02c2..b8c5cfbe61 100644
--- a/macros/latex/contrib/europecv/ecvgr.def
+++ b/macros/latex/contrib/europecv/ecvgr.def
@@ -3,7 +3,7 @@
% WARNING: Requires the babel package loaded with options
% [english,greek] (at least) for \foreignlanguage
%
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
\ProvidesFile{ecvgr.def}[europecv Greek definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{\foreignlanguage{greek}{Προσωπικές πληροφορίες}}}
@@ -42,5 +42,6 @@
\def\ecv@cefindepkey{\ecv@utf{\foreignlanguage{greek}{Ανεξάρτητος χρήστης}}}
\def\ecv@cefprofkey{\ecv@utf{\foreignlanguage{greek}{Αυτάρκης χρήστης}}}
+\renewcommand*\ecvbranding{\ecv@utf{\Large\textbf{\foreignlanguage{english}{Europass}}}}
\renewcommand*\ecvtitle{\ecv@utf{\Large\textbf{\foreignlanguage{greek}{Β\ecv@kern ι\ecv@kern ο\ecv@kern γ\ecv@kern ρ\ecv@kern α\ecv@kern φ\ecv@kern ι\ecv@kern κ\ecv@kern ό}}\\[5pt]
-\Large\textbf{\foreignlanguage{greek}{σ\ecv@kern η\ecv@kern μ\ecv@kern ε\ecv@kern ί\ecv@kern ω\ecv@kern μ\ecv@kern α} \foreignlanguage{english}{Europass}}}}
+\Large\textbf{\foreignlanguage{greek}{σ\ecv@kern η\ecv@kern μ\ecv@kern ε\ecv@kern ί\ecv@kern ω\ecv@kern μ\ecv@kern α}}}\ecvbranding}
diff --git a/macros/latex/contrib/europecv/ecvhu.def b/macros/latex/contrib/europecv/ecvhu.def
index 30bbd245d8..1f62d5eda3 100644
--- a/macros/latex/contrib/europecv/ecvhu.def
+++ b/macros/latex/contrib/europecv/ecvhu.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation yet to be finished, 2019/03/19
+% Translation yet to be finished, 12/23/2019
\ProvidesFile{ecvhu.def}[europecv Hungarian definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Szem\'elyi adatok}}
@@ -39,8 +39,9 @@
\def\ecv@cefindepkey{\ecv@utf{\"on\'all\'o nyelvhaszn\'al\'o}}
\def\ecv@cefprofkey{\ecv@utf{mesterfok\'u nyelvhaszn\'al\'o}}
-\renewcommand*\ecvtitle{\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
-r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}\\[5pt]
+\renewcommand*{\ecvbranding}{\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
+r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}\\[5pt]}}
+\renewcommand*\ecvtitle{\ecvbranding\ecv@utf{
\Large\textbf{\"O\ecv@kern n\ecv@kern \'e\ecv@kern l\ecv@kern
e\ecv@kern t\ecv@kern r\ecv@kern a\ecv@kern j\ecv@kern z}}}
diff --git a/macros/latex/contrib/europecv/ecvis.def b/macros/latex/contrib/europecv/ecvis.def
index 141be09089..40a5d63393 100644
--- a/macros/latex/contrib/europecv/ecvis.def
+++ b/macros/latex/contrib/europecv/ecvis.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation yet to be finished, 2019/03/19
+% Translation yet to be finished, 12/23/2019
\ProvidesFile{ecvis.def}[europecv Icelandic definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Pers{\'o}nulegar uppl{\'y}singar}}
@@ -39,7 +39,8 @@
\def\ecv@cefindepkey{\ecv@utf{Lengra komin(n)}}
\def\ecv@cefprofkey{\ecv@utf{Leikinn m{\'a}lnotandi}}
-\renewcommand*\ecvtitle{\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
-r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}\\[5pt]
+\renewcommand*{\ecvbranding}{\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
+r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}\\[5pt]}}
+\renewcommand*\ecvtitle{\ecvbranding\ecv@utf{
\Large\textbf{\ae\ecv@kern v\ecv@kern i\ecv@kern \'a\ecv@kern
g\ecv@kern r\ecv@kern i\ecv@kern p}}}
diff --git a/macros/latex/contrib/europecv/ecvit.def b/macros/latex/contrib/europecv/ecvit.def
index 7b9579aabf..42aa13b4e2 100644
--- a/macros/latex/contrib/europecv/ecvit.def
+++ b/macros/latex/contrib/europecv/ecvit.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
\ProvidesFile{ecvit.def}[europecv Italian definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Informazioni personali}}
@@ -41,8 +41,9 @@
+\renewcommand*{\ecvbranding}{\\[5pt]\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
+r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}}}
\renewcommand*{\ecvtitle}{\ecv@utf{%
\Large\textbf{C\ecv@kern u\ecv@kern r\ecv@kern r\ecv@kern
i\ecv@kern c\ecv@kern u\ecv@kern l\ecv@kern u\ecv@kern m \ecv@kern V\ecv@kern
-i\ecv@kern t\ecv@kern a\ecv@kern e}\\[5pt]
-\Large\textbf{E\ecv@kern u\ecv@kern r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}}}
+i\ecv@kern t\ecv@kern a\ecv@kern e}}\ecvbranding}
diff --git a/macros/latex/contrib/europecv/ecvlt.def b/macros/latex/contrib/europecv/ecvlt.def
index cd5eaf368d..d7fa8c510c 100644
--- a/macros/latex/contrib/europecv/ecvlt.def
+++ b/macros/latex/contrib/europecv/ecvlt.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation yet to be finished, 2019/03/19
+% Translation yet to be finished, 12/23/2019
\ProvidesFile{ecvlt.def}[europecv Lithuanian definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Asmenin{\.e} informacija}}
@@ -39,8 +39,9 @@
\def\ecv@cefindepkey{\ecv@utf{Pa{\v z}eng{\k e}s vartotojas}}
\def\ecv@cefprofkey{\ecv@utf{{\k I}gud{\k e}s vartotojas}}
-\renewcommand*\ecvtitle{\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
-r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}\\[5pt]
+\renewcommand*{\ecvbranding}{\ecv@utf{\Large\textbf{E\ecv@kern u\ecv@kern
+r\ecv@kern o\ecv@kern p\ecv@kern a\ecv@kern s\ecv@kern s}\\[5pt]}}
+\renewcommand*\ecvtitle{\ecvbranding\ecv@utf{
\Large\textbf{G\ecv@kern y\ecv@kern v\ecv@kern e\ecv@kern
n\ecv@kern i\ecv@kern m\ecv@kern o \ecv@kern \ecv@kern a\ecv@kern p\ecv@kern
r\ecv@kern a\ecv@kern {\v s}\ecv@kern y\ecv@kern m\ecv@kern a\ecv@kern s}}}
diff --git a/macros/latex/contrib/europecv/ecvlv.def b/macros/latex/contrib/europecv/ecvlv.def
index 3b86b20abd..2e302fa473 100644
--- a/macros/latex/contrib/europecv/ecvlv.def
+++ b/macros/latex/contrib/europecv/ecvlv.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
\ProvidesFile{ecvlv.def}[europecv Latvian definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Personas dati}}
diff --git a/macros/latex/contrib/europecv/ecvmt.def b/macros/latex/contrib/europecv/ecvmt.def
index 7c7086b9ee..226e46d0be 100644
--- a/macros/latex/contrib/europecv/ecvmt.def
+++ b/macros/latex/contrib/europecv/ecvmt.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
\ProvidesFile{ecvmt-utf8.def}[europecv Maltese definitions]
\inputencoding{utf8x}
% Personal information
diff --git a/macros/latex/contrib/europecv/ecvnl.def b/macros/latex/contrib/europecv/ecvnl.def
index 402d52bc6b..a9f5ec34b8 100644
--- a/macros/latex/contrib/europecv/ecvnl.def
+++ b/macros/latex/contrib/europecv/ecvnl.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
\ProvidesFile{ecvnl.def}[europecv Dutch definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Persoonsgegevens}}
diff --git a/macros/latex/contrib/europecv/ecvno.def b/macros/latex/contrib/europecv/ecvno.def
index dc46bc8785..90f16d09bd 100644
--- a/macros/latex/contrib/europecv/ecvno.def
+++ b/macros/latex/contrib/europecv/ecvno.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation completed on 2018/03/19
+% Translation completed on 12/23/2019
\ProvidesFile{ecvno.def}[europecv Norwegian definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Personlige opplysninger}}
diff --git a/macros/latex/contrib/europecv/ecvpl.def b/macros/latex/contrib/europecv/ecvpl.def
index 11af7c3a4d..4870030eea 100644
--- a/macros/latex/contrib/europecv/ecvpl.def
+++ b/macros/latex/contrib/europecv/ecvpl.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
\ProvidesFile{ecvpl.def}[europecv Polish definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Dane osobowe}}
diff --git a/macros/latex/contrib/europecv/ecvpt.def b/macros/latex/contrib/europecv/ecvpt.def
index 3a2f0d8e85..72dcb50e8a 100644
--- a/macros/latex/contrib/europecv/ecvpt.def
+++ b/macros/latex/contrib/europecv/ecvpt.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
\ProvidesFile{ecvpt.def}[europecv Portuguese definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Informa\c{c}\~ao pessoal}}
diff --git a/macros/latex/contrib/europecv/ecvro.def b/macros/latex/contrib/europecv/ecvro.def
index e6030cdbcb..64deacfb9f 100644
--- a/macros/latex/contrib/europecv/ecvro.def
+++ b/macros/latex/contrib/europecv/ecvro.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
\ProvidesFile{ecvro.def}[europecv Romanian definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Informa{\c t}ii personale}}
diff --git a/macros/latex/contrib/europecv/ecvsk.def b/macros/latex/contrib/europecv/ecvsk.def
index 68784d47c3..d836f354cc 100644
--- a/macros/latex/contrib/europecv/ecvsk.def
+++ b/macros/latex/contrib/europecv/ecvsk.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
\ProvidesFile{ecvsk.def}[europecv Slovak definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Osobn{\'e} {\'u}daje}}
diff --git a/macros/latex/contrib/europecv/ecvsl.def b/macros/latex/contrib/europecv/ecvsl.def
index 57657dfad9..5df7bd1300 100644
--- a/macros/latex/contrib/europecv/ecvsl.def
+++ b/macros/latex/contrib/europecv/ecvsl.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
\ProvidesFile{ecvsl.def}[europecv Slovenian definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Osebni podatki}}
diff --git a/macros/latex/contrib/europecv/ecvsr.def b/macros/latex/contrib/europecv/ecvsr.def
index 9adf588ac9..0e2126ee25 100644
--- a/macros/latex/contrib/europecv/ecvsr.def
+++ b/macros/latex/contrib/europecv/ecvsr.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation completed on 2019/03/19
+% Translation completed on 12/23/2019
\ProvidesFile{ecvsr.def}[europecv Serbian definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Li{\v c}ni podaci}}
@@ -39,7 +39,7 @@
\def\ecv@cefindepkey{\ecv@utf{Samostalni korisnik}}
\def\ecv@cefprofkey{\ecv@utf{Osposobljeni korisnik}}
-\providecommand*{\ecvtitle}{\ecv@utf{\Large\textbf{E\ecv@kern v\ecv@kern
+\renewcommand*{\ecvtitle}{\ecv@utf{\Large\textbf{E\ecv@kern v\ecv@kern
r\ecv@kern o\ecv@kern p\ecv@kern s\ecv@kern k\ecv@kern i}\\[5pt]
\Large\textbf{C\ecv@kern u\ecv@kern r\ecv@kern r\ecv@kern
i\ecv@kern c\ecv@kern u\ecv@kern l\ecv@kern u\ecv@kern m \ecv@kern
diff --git a/macros/latex/contrib/europecv/ecvsv.def b/macros/latex/contrib/europecv/ecvsv.def
index 34e4415e2a..26b3d3d270 100644
--- a/macros/latex/contrib/europecv/ecvsv.def
+++ b/macros/latex/contrib/europecv/ecvsv.def
@@ -1,6 +1,6 @@
%!TEX encoding = UTF-8 Unicode
%
-% Translation yet to be finished, 2019/03/19
+% Translation yet to be finished, 12/23/2019
\ProvidesFile{ecvsv.def}[europecv Swedish definitions]
% Personal information
\def\ecv@infosectionkey{\ecv@utf{Personuppgifter}}
diff --git a/macros/latex/contrib/europecv/europecv.cls b/macros/latex/contrib/europecv/europecv.cls
index 28a5c442a1..c30f1c3397 100644
--- a/macros/latex/contrib/europecv/europecv.cls
+++ b/macros/latex/contrib/europecv/europecv.cls
@@ -6,7 +6,7 @@
% See https://ctan.mirror.garr.it/mirrors/CTAN/help/Catalogue/licenses.lppl.html
% for the details of that license
\NeedsTeXFormat{LaTeX2e}
-\ProvidesClass{europecv}[2019/03/19 (Unicode TeX detection) European curriculum vitae class]
+\ProvidesClass{europecv}[12/23/2019 (Unicode TeX detection) European curriculum vitae class]
% CV models and instructions:
% http://europass.cedefop.eu.int/htm/index.htm
@@ -248,6 +248,13 @@
\AtEndOfPackage{\renewcommand*\ecvtitle{}}%
}
+% The nobranding function was created by Marc-Andre Hermanns
+
+% No branding (i.e., "Europass" logotype)
+\DeclareOption{nobranding}{%
+ \AtEndOfPackage{\renewcommand*\ecvbranding{}}%
+}
+
% Europass logo
\DeclareOption{logo}{%
\providecommand*\draweuropasslogo{%
diff --git a/macros/latex/contrib/europecv/europecv.pdf b/macros/latex/contrib/europecv/europecv.pdf
index a833e27c85..e7d9fc67ec 100644
--- a/macros/latex/contrib/europecv/europecv.pdf
+++ b/macros/latex/contrib/europecv/europecv.pdf
Binary files differ
diff --git a/macros/latex/contrib/europecv/europecv.tex b/macros/latex/contrib/europecv/europecv.tex
index b5c7cee7f2..fa53690ba6 100644
--- a/macros/latex/contrib/europecv/europecv.tex
+++ b/macros/latex/contrib/europecv/europecv.tex
@@ -51,7 +51,7 @@
Department of Engineering\\
University of Sannio in Benevento, Italy\\
}
-\date{March 19, 2019}
+\date{December 23, 2019}
\begin{document}
@@ -67,7 +67,11 @@
As of 11 March 2002 the European Commission has defined a common format for curricula vit\ae. This class is an unofficial \LaTeX\ implementation of that format. Although primarily intended for users in the European Union, the class can be used for any kind of curriculum vit\ae.
-To simplify the package distribution and its improvements, a GitHub repository has been opened. Such repository is available at the link \url{https://github.com/gsilano/EuropeCV}. Please, feel free to open an issue if you find mistakes or errors. At the same time, if you want you can collaborate as a developer: your name will be added to the list of contributors.
+To simplify the package distribution and its improvements, a GitHub repository has been opened.
+Such repository is available at the link \url{https://github.com/gsilano/EuropeCV}. Please, feel
+free to open an issue if you find mistakes or errors. At the same time, you can collaborate as a
+developer making the LaTeX packages even better. In this case, your name will be added to the
+contributors list (at the end of the manual).
\end{abstract}
@@ -80,7 +84,12 @@ This class is an unofficial \LaTeX\ implementation of the standard model for cur
The Europass~CV defines both the content and the layout of a curriculum vit\ae. The \textsf{europecv} class provides support for the latter, and for the former as far as personal information and spoken languages are concerned. If you want to know how the content of a Europass~CV must be structured you must read the documentation provided by the Europass website.\footnote{\url{http://europass.cedefop.eu.int/htm/index.htm}.}
-This class tries to be as close as possible to the standard model without sacrificing flexibility. Although it is primarily intended for users of the European Union, the class can be used for any kind of curriculum vit\ae\ (possibly with the options \texttt{notitle} and \texttt{nologo}, see below), or even for other kinds of documents: for example, this documentation file has been typeset using the \textsf{europecv} class. The source files are included in the package.
+This class tries to be as close as possible to the standard model without sacrificing flexibility.
+Although it is primarily intended for users of the European Union, the class can be used for any
+kind of curriculum vit\ae\ (possibly with the options \texttt{notitle}, \texttt{nobranding} and
+\texttt{nologo}, see below), or even for other kinds of documents: for example, this documentation
+file has been typeset using the \textsf{europecv} class. The source files are included in the
+package.
\medskip
A minimal (empty) curriculum vit\ae, quite similar to the official one, can be obtained with the following code:
@@ -115,7 +124,8 @@ The main differences with respect to the official model are the use of Helvetica
The following options can be used with the \texttt{\textbackslash documentclass} command, e.g.
\begin{quote}
- \texttt{\textbackslash documentclass[latin1,helvetica,narrow,italian,logo,notitle,totpages]\{europecv\}}
+ \texttt{\textbackslash
+ documentclass[latin1,helvetica,narrow,italian,logo,notitle,nobranding,totpages]\{europecv\}}
\end{quote}
\renewcommand*{\ecvtitle}{}
\renewcommand*{\draweuropasslogo}{}
@@ -190,8 +200,12 @@ The following options can be used with the \texttt{\textbackslash documentclass}
\ecvitem{Notes}{The \textsf{graphicx} package must be included in your document for the Europass logo to be drawn.}
\section{Title option}
- \ecvitem[15pt]{\texttt{notitle}}{Omits the title (``Europass Curriculum Vit\ae'') at the beginning of the curriculum vit\ae.}
- \ecvitem{Notes}{Users outside the European Community who might want to use the \textsf{europecv} class may specify \texttt{notitle} and \texttt{nologo} among the class options.}
+ \ecvitem[15pt]{\texttt{notitle}}{Omits the title (``Europass Curriculum Vit\ae'') at the
+ beginning of the curriculum vit\ae.}
+ \ecvitem[15pt]{\texttt{nobranding}}{Turns off the ``Europass'' branding text.}
+ \ecvitem{Notes}{Users outside the European Community who might want to use the
+ \textsf{europecv} class may specify \texttt{notitle}, \texttt{nobranding} and \texttt{nologo}
+ among the class options.}
\section{Page numbering}
\ecvitem[15pt]{\texttt{totpages}}{Prints the total number of pages on each page.}
@@ -251,7 +265,7 @@ The following options can be used with the \texttt{\textbackslash documentclass}
For example, consider the following document:
\begin{quote}
\begin{verbatim}
- \documentclass[helvetica,notitle,nologo]{europecv}
+ \documentclass[helvetica,notitle,nobranding,nologo]{europecv}
\usepackage{graphicx}
% Define personal data
@@ -313,7 +327,7 @@ The above will produce the following output:
If you do not want to use so much space, you may add some negative space with \ecv{space} in order to raise the personal information block. In this case, the picture should be put at the rightmost position. The following is an example that shows how to put your personal picture on the side of the personal information block:
\begin{quote}
\begin{verbatim}
- \documentclass[helvetica,notitle,nologo]{europecv}
+ \documentclass[helvetica,notitle,nobranding,nologo]{europecv}
\usepackage{graphicx}
\ecvname{Alan Touring}
@@ -688,7 +702,8 @@ Europass logo. Thanks to \textbf{Roman Bertle} for suggesting to redefine item m
\textbf{J\"urgen Spitzm\"uller} and \textbf{lgelmi} for fixing the bugs into the 2018.07.22 and
2018.09.02 package releases, respectively. Thanks to \textbf{redlulz} and \textbf{Emil
Gardstr\"{o}m} for fixing the German (2018.10.12) and Swedish (2019.01.25) translation,
-respectively. Thanks to \textbf{JPSPLeite} for improving the Portuguese translation.
+respectively. Thanks to \textbf{JPSPLeite} for improving the Portuguese translation. Thanks to
+\textbf{Marc-Andre Hermanns} for adding the \texttt{nobranding} feature.
\vspace{0.5cm}
\textbf{\large{8\hspace{0.5cm}Disclaimer}}
diff --git a/macros/latex/contrib/europecv/templates/cv_template_academic_en.pdf b/macros/latex/contrib/europecv/templates/cv_template_academic_en.pdf
index 33a0c5ef91..9986ce5d8b 100644
--- a/macros/latex/contrib/europecv/templates/cv_template_academic_en.pdf
+++ b/macros/latex/contrib/europecv/templates/cv_template_academic_en.pdf
Binary files differ
diff --git a/macros/latex/contrib/europecv/templates/cv_template_academic_en.tex b/macros/latex/contrib/europecv/templates/cv_template_academic_en.tex
index db97f9dd7d..0419d0657a 100644
--- a/macros/latex/contrib/europecv/templates/cv_template_academic_en.tex
+++ b/macros/latex/contrib/europecv/templates/cv_template_academic_en.tex
@@ -1,4 +1,4 @@
-\documentclass[totpages,helvetica,openbib,english,nologo,notitle,totpages]{europecv}
+\documentclass[totpages,helvetica,openbib,english,nologo,nobranding,notitle,totpages]{europecv}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage[a4paper,top=1.27cm,left=1cm,right=1cm,bottom=2cm]{geometry}
@@ -105,7 +105,7 @@
\pdfbookmark{Research areas}{Research areas}
\section{Research areas}
-\ecvitem{}{Autonomous systems; distributed control and optimization over networks; nonsmooth systems; picewise quadratic stability.}
+\ecvitem{}{Autonomous systems; distributed control and optimization over networks; nonsmooth systems; piecewise quadratic stability.}
\pdfbookmark{Personal skills and~competences}{Personal skills and~competences}
\section{Personal skills and~competences}
@@ -188,7 +188,7 @@
\section{Research activities}
\ecvitem{}{\textbf{Stability of piecewise-linear systems}}
-\ecvitem{}{Something related to the picewise-linear systems \refconferencesPublications[FirstPubLabel], \refconferencesPublications[SecondPubLabel] ad \refconferencesPublications[ThirdPubLabel].}
+\ecvitem{}{Something related to the piecewise-linear systems \refconferencesPublications[FirstPubLabel], \refconferencesPublications[SecondPubLabel] ad \refconferencesPublications[ThirdPubLabel].}
\pdfbookmark{Publications}{Publications}
\section{Publications}
diff --git a/macros/latex/contrib/europecv/templates/cv_template_en.pdf b/macros/latex/contrib/europecv/templates/cv_template_en.pdf
index d5b54320c7..651f4319a7 100644
--- a/macros/latex/contrib/europecv/templates/cv_template_en.pdf
+++ b/macros/latex/contrib/europecv/templates/cv_template_en.pdf
Binary files differ
diff --git a/macros/latex/contrib/europecv/templates/cv_template_en.tex b/macros/latex/contrib/europecv/templates/cv_template_en.tex
index 584e86497d..d9bbbc7de9 100644
--- a/macros/latex/contrib/europecv/templates/cv_template_en.tex
+++ b/macros/latex/contrib/europecv/templates/cv_template_en.tex
@@ -1,4 +1,4 @@
-\documentclass[totpages,helvetica,openbib,english,nologo,notitle,totpages]{europecv}
+\documentclass[totpages,helvetica,openbib,english,nologo,nobranding,notitle,totpages]{europecv}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage[a4paper,top=1.27cm,left=1cm,right=1cm,bottom=2cm]{geometry}