4

Is it possible to write a document for A5-paper such that I can configure its margin widths and letter spacing such that a line contains at most roughly 55 letters?

1 Answers1

2

You can use the geometry package to set your margins how you like, and add Koma-script functionality with scrextend to set the base font size with \changefontsizes.

\documentclass[10pt]{book}

\usepackage{blindtext}

\usepackage[a5paper]{geometry}
%\usepackage[a5paper, top=2in, bottom=1.5in, left=1in, right=1in]{geometry}

\usepackage{scrextend}
\changefontsizes{10.0pt}  % Change base font size

\begin{document}

\blinddocument

\end{document}

It looks like that first line has 53-55 characters in it...

first page

cslstr
  • 6,545