Curricula Vitae / Résumés ⇒ How do I increase font size in twentysecondcv template?
-
- Posts: 4
- Joined: Fri Sep 07, 2018 2:02 am
How do I increase font size in twentysecondcv template?
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.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10358
- Joined: Mon Mar 10, 2008 9:44 pm
How do I increase font size in twentysecondcv template?
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
-
- Posts: 4
- Joined: Fri Sep 07, 2018 2:02 am