Text Formatting ⇒ increasing of font size in output document
increasing of font size in output document
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- 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: 10335
- 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: 10335
- 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