0

Can I mix moderncv styles, let say I want to use banking style for the header (title) definition and use classic style definitions for the rest?

Cfun
  • 1,840

1 Answers1

2

I looked into the code, in fact banking style uses moderncvheadiii.sty for that it loads the specific header definitions (moderncvheadiii.sty) using \moderncvhead{3} thus one can use banking style for the header and classic style for the rest by adding that command after loading the classic style, that would overwrite the classic style loaded defintions of the header.

...
\moderncvstyle{classic}  
\moderncvhead{3}
...
Cfun
  • 1,840