mirror of
https://github.com/moderncv/moderncv.git
synced 2026-02-06 10:05:19 +01:00
Bugfixes, improvements and new symbols/nosymbols option for all styles (#34)
* fix Researcher ID (still) doesn't display Issue #29. * make options 'symbols' and 'nosymbols' available to all styles to toggle whether symbols should be used or not. Include symbols in oldstyle by default. * migrate older newcommand syntax in moderncvcollection.sty to the xparse syntax. * Fix resumé typo in template. Is now résumé. * remove loading lmodern fonts in all styles as they can produce issues with german characters, see https://tex.stackexchange.com/questions/496630/lualatex-problems-with-german-characters. * remove loading inputenc package by default. Only load the package when pdflatex is used.
This commit is contained in:
parent
caa0cb8dbf
commit
35138209d3
13 changed files with 143 additions and 60 deletions
|
|
@ -12,10 +12,14 @@
|
|||
\NeedsTeXFormat{LaTeX2e}
|
||||
\ProvidesPackage{moderncvstyleoldstyle}[2021/01/21 v2.1.0 modern curriculum vitae and letter style scheme: oldstyle]
|
||||
|
||||
\DeclareOption*{}% avoid choking on unknown options
|
||||
\ExecuteOptions{}
|
||||
\ProcessOptions*\relax% \ProcessOptions* processes the options in the order provided (i.e., with the later ones possibly overriding the former ones), while \ProcessOptions processes them in the order of the package
|
||||
% toggle use of symbol fonts.
|
||||
\@initializeif{\if@symbols}\@symbolsfalse
|
||||
\DeclareOption{symbols} {\@symbolstrue}
|
||||
\DeclareOption{nosymbols} {\@symbolsfalse}
|
||||
|
||||
\DeclareOption*{}% avoid choking on unknown options
|
||||
\ExecuteOptions{symbols}
|
||||
\ProcessOptions*\relax% \ProcessOptions* processes the options in the order provided (i.e., with the later ones possibly overriding the former ones), while \ProcessOptions processes them in the order of the package
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% fonts & icons
|
||||
|
|
@ -35,7 +39,15 @@
|
|||
%\fi
|
||||
|
||||
% symbols
|
||||
\moderncvicons{letters}
|
||||
\if@symbols
|
||||
\ifxetexorluatex
|
||||
\moderncvicons{awesome} % use font-awesome symbols if lualatex or xelatex is used
|
||||
\else
|
||||
\moderncvicons{marvosym} % use marvosym symbols pdflatex is used
|
||||
\fi
|
||||
\else
|
||||
\moderncvicons{letters} % do not use symbols, use letters
|
||||
\fi
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue