Text Formatting ⇒ increasing of font size in output document
increasing of font size in output document
I would like to know how I can get the font size of the pdf output in LATEX. Presently the font size is 8. I have increased in the terminal to 12, but the font size of output document is still 8.It is too small to read.
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
increasing of font size in output document
Hi and welcome, i am not sure what you mean. Usually, the base size is given as an option to the class,
Can you please be more specific?
\documentclass[10pt]{article}
, \documentclass[8pt]{extbook}
or \documentclass[fontsize=16pt]{scrreprt}
.Can you please be more specific?
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Re: increasing of font size in output document
I wish to have the document of larger size font (say 16).
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
increasing of font size in output document
Use
\documentclass[fontsize=16pt]{scrreprt}
or define a new font size file as described in How to work with larger fonts.The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
- Stefan Kottwitz
- Site Admin
- Posts: 10340
- Joined: Mon Mar 10, 2008 9:44 pm
increasing of font size in output document
Welcome to the forum!
It would be good if we would know your document class, so we could suggest the best way.
Personally, I would use
or scrreprt or scrbook. The main point is, using a flexible
KOMA-Script class (name scr...) and the option
There's also the
extsizes bundle, which you can use like
It works like old base classes. 16pt is not available there though.
Stefan
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
LaTeX.org admin
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Re: increasing of font size in output document
Stefan, as em and ex are relative sizes, dependant on the current font size, this will be a troublemaker.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
- Stefan Kottwitz
- Site Admin
- Posts: 10340
- 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
LaTeX.org admin
increasing of font size in output document
Hai Stefan, I am new to LATEX. But excited by its power. I am using
What I did - introduced the command
Is it OK? Wish to know your comments.
\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
Re: increasing of font size in output document
REVTeX is for submission of documents to the American Physical Society onlly; they will postprocess your document to their guidelines, most likely removing the change. Why should one article in a journal be printed larger than any others?
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.