Text Formatting ⇒ increasing of font size in output document
increasing of font size in output document
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
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
increasing of font size in output document
\documentclass[10pt]{article}
, \documentclass[8pt]{extbook}
or \documentclass[fontsize=16pt]{scrreprt}
.Can you please be more specific?
Re: increasing of font size in output document
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
increasing of font size in output document
\documentclass[fontsize=16pt]{scrreprt}
or define a new font size file as described in How to work with larger fonts.- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
increasing of font size in output document
It would be good if we would know your document class, so we could suggest the best way.
Personally, I would use
Code: Select all
\documentclass[fontsize=16pt]{scrartcl}

fontsize=16pt
. You could use other sizes, even em, ex, cm or mm at this option. KOMA-Script is very flexible.There's also the

Code: Select all
\documentclass[17pt]{extarticle}
Stefan
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Re: increasing of font size in output document
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
increasing of font size in output document
Very good to point that out! So it's better to use other absolute size units, such as pt, bp, cm, mm, ... interesting to test it though.Johannes_B wrote:em and ex are relative sizes, dependant on the current font size
Stefan
increasing of font size in output document
\documentclass [10pt]{revtex4}
. What I did - introduced the command
\Large
after the \begin{document}
, it worked. Is it OK? Wish to know your comments.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm