[Tex/LaTex] Increase the font size of text

fontsize

When compiling the document, the pdf product looks like this:

pictura

The font size of the section is easy to change with titlesec package, but what about the remaining text?

I have tried with \documentclass[size]{extreport} but it doesn't works. When trying with size=12pt, 15pt there is no effect and with 20pt suddenly font becomes too big.

Here is an MWE

    \documentclass{extreport}
\usepackage[spanish]{babel}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[T1]{fontenc}
\usepackage{titlesec}
\titleformat{\section}{\normalfont\fontsize{12}{15}\bfseries}{\thesection}{0.5em}{}
\setlength{\topmargin}{-1cm}
\setlength{\textheight}{612pt}
\thispagestyle{empty}
\begin{document}
\begin{center}
\LARGE\textbf{CURRÍCULUM VITAE}
\end{center}
\section*{\textbf{Datos personales}}
%{\setlength{\parindent}{0pt}
Nombre completo: the name

Fecha de nacimiento: 22\slash01\slash1994.

Edad: 24 años.  

DNI: 0..0.0 

Residencia: the residence

Celular: phone number

Tel: telteltel

Correo electrónico: 

Estado Civil: Soltero.

Nacionalidad: Argentino.

\end{document}

Best Answer

The extsizes classes (extarticle, extreport, extbook, extletter, and extproc) provide support for sizes eight, nine, ten, eleven, twelve, fourteen, seventeen and twenty points.

So one can use

\documentclass[size]{extreport}

where size is 8pt, 9pt, 10pt, 11pt, 12pt, 14pt, 17pt or 20pt.

Related Question