Text Formatting ⇒ Change default font size
-
- Posts: 2
- Joined: Thu Dec 23, 2010 9:14 pm
Change default font size
I would like to know how I can change the size of font base for the tables, reduce from 12pt to 10pt?
I really need your help. Thanks a lot.
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
Change default font size
You can always change font size using \small or \footnotesize of similar commands. I'm not sure what the problem is in your case. This works as expected:
Code: Select all
\documentclass[12pt]{article}
\usepackage{lipsum}% just to generate some dummy text
\begin{document}
\lipsum[1]% dummy text
\begin{table}\centering\tiny
\begin{tabular}{ccc}
Test I & Test II & Test III\\
1 & 2 & 3\\
4 & 5 & 6
\end{tabular}
\caption{A table}
\end{table}
\end{document}
-
- Posts: 2
- Joined: Thu Dec 23, 2010 9:14 pm