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?
Asked
Active
Viewed 711 times
4
-
1Are you using a monospace font? If not, you might run into trouble that an "m" is wider than an "i"... – cslstr Mar 19 '14 at 21:52
-
Not necessary. The problem is that I was writing a book for my customer and she wants me to write the book with paper size given in another book. So that 55 is an approximate number of letters one line contains. – Beginning Mar 19 '14 at 21:54
-
Related: Nicely force 66 characters per line – Werner Mar 19 '14 at 22:27
1 Answers
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...

cslstr
- 6,545
-
Change fontsize inside float in KOMA class Can you please make the needed changes? – Johannes_B Jan 17 '15 at 12:56