0

There is an example in the moderncv package where the are no rule for the Banking style. Here is the file template_banking_red-norules. I would like to know how to remove the rules. Thank you!

user2314737
  • 27,088
  • 20
  • 102
  • 114
Donald Gedeon
  • 325
  • 1
  • 2
  • 12

1 Answers1

1

In the same folder there is a template.tex, open it and find the part in the preamble where it says

% moderncv themes \moderncvstyle{casual} \moderncvcolor{blue}

First change the theme from casual to banking; next add the style-option norules.

Your final preamble should therefore contain

% moderncv themes \moderncvstyle[norules]{banking} \moderncvcolor{blue}

For further options and information about the style (and a way to manually manipulate it) have a look at moderncvstylebanking.sty, found online here.

vonAlenberg
  • 552
  • 1
  • 3
  • 11