Text Formatting ⇒ how to get size 14pt font in an entire document?
-
- Posts: 4
- Joined: Sun Sep 12, 2010 9:44 pm
how to get size 14pt font in an entire document?
Thank you!
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
how to get size 14pt font in an entire document?
2. Alternatively, you may use memoir document class which does have support for larger font sizes:
Code: Select all
\documentclass[14pt]{memoir}
\usepackage{mathptmx}
\usepackage{lipsum}
\begin{document}
\lipsum[1-2]
\end{document}
-
- Posts: 4
- Joined: Sun Sep 12, 2010 9:44 pm