Text FormattingMaking a document, LaTeXed for a5paper, look like a4

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
JonTsu
Posts: 9
Joined: Sun Jan 08, 2012 3:54 pm

Making a document, LaTeXed for a5paper, look like a4

Post by JonTsu »

I'm trying to LaTeX my lecture notes for a kindle and so I've started ny preamble with \documentclass[a5paper]{article}

However, I find that this makes my document look very juvenile (as the text is so large in relation to the page). Is there any way of reducing the text size to the point that it looks as if it had been LaTeXed using \documentclass[a4paper]{article} and then reduced to a5?

Any help would be greatly appreciated :)

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Stefan Kottwitz
Site Admin
Posts: 10348
Joined: Mon Mar 10, 2008 9:44 pm

Making a document, LaTeXed for a5paper, look like a4

Post by Stefan Kottwitz »

Hi JonTsu,

welcome to the board!

You could use scrartcl instead of article. scrartcl can bee seen as extended article class, it belongs to the very recommendable KOMA-Script bundle. It allows arbitrary base font sizes given in any TeX dimension. For example:

Code: Select all

\documentclass[paper=a5,fontsize=8pt]{scrartcl}
\usepackage{lipsum}
\begin{document}
\lipsum
\end{document}
Alternatively you could use extarticle.

Stefan
LaTeX.org admin
JonTsu
Posts: 9
Joined: Sun Jan 08, 2012 3:54 pm

Re: Making a document, LaTeXed for a5paper, look like a4

Post by JonTsu »

Thanks so much Stefan, that's very, very helpful! :D
Jon.
Post Reply