Hi,
Does anyone know how can I increase the font size in twentysecondcv template? Apparently \documentclass[letterpaper, fontsize=14]{twentysecondcv} has no effect on increasing the font size.
Thanks.
Curricula Vitae / Résumés ⇒ How do I increase font size in twentysecondcv template?
-
- Posts: 4
- Joined: Fri Sep 07, 2018 2:02 am
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
How do I increase font size in twentysecondcv template?
Hi!
The template bases on the article class with a limited base font size, up to 12pt. But you can change the base font size and so all derived sizes (\large, \small etc.) that way, using a KOMA-Script extension:
Additionally an optional argument can set the baseline skip too, such as
Stefan
The template bases on the article class with a limited base font size, up to 12pt. But you can change the base font size and so all derived sizes (\large, \small etc.) that way, using a KOMA-Script extension:
Code: Select all
\usepackage{scrextend}
\changefontsizes{14pt}
\changefontsizes[20pt]{14pt}
.Stefan
LaTeX.org admin
-
- Posts: 4
- Joined: Fri Sep 07, 2018 2:02 am
How do I increase font size in twentysecondcv template?
Awesome, thank you Stefan.