moderncvstylefancy.sty 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. %% start of file `moderncvstylefancy.sty'.
  2. %% Copyright 2015-2015 Xavier Danaux (xdanaux@gmail.com).
  3. %
  4. % This work may be distributed and/or modified under the
  5. % conditions of the LaTeX Project Public License version 1.3c,
  6. % available at http://www.latex-project.org/lppl/.
  7. %-------------------------------------------------------------------------------
  8. % identification
  9. %-------------------------------------------------------------------------------
  10. \NeedsTeXFormat{LaTeX2e}
  11. \ProvidesPackage{moderncvstylefancy}[2015/07/28 v2.0.0 modern curriculum vitae and letter style scheme: fancy]
  12. \DeclareOption*{}% avoid choking on unknown options
  13. \ExecuteOptions{}
  14. \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
  15. %-------------------------------------------------------------------------------
  16. % fonts & icons
  17. %-------------------------------------------------------------------------------
  18. % EB Garamond font
  19. %\ifxetexorluatex
  20. % \setmainfont{EB Garamond}
  21. % \setsansfont{EB Garamond}
  22. % \setmathfont{EB Garamond}
  23. %\else
  24. \IfFileExists{ebgaramond.sty}%
  25. {\RequirePackage{ebgaramond}}%
  26. {}
  27. %\fi
  28. % symbols
  29. \moderncvicons{awesome}
  30. %-------------------------------------------------------------------------------
  31. % header, body & footer
  32. %-------------------------------------------------------------------------------
  33. \moderncvhead{5}
  34. \moderncvbody{5}
  35. \endinput
  36. %% end of file `moderncvstylefancy.sty'.