Fonts & Character SetsHow to let my fonts smaller?

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
yaozhao
Posts: 57
Joined: Sat Oct 27, 2018 10:38 pm

How to let my fonts smaller?

Post by yaozhao »

Code: Select all

\begin{table}
\caption {\label{tab:table1} SUMMARY STATISTICS FOR CONTRIBUTIONS BY INDIVIDUAL CONTRIBUTORS}
My title of table is:SUMMARY STATISTICS FOR CONTRIBUTIONS BY INDIVIDUAL CONTRIBUTORS

How to let it be smaller to ensure it could be within one line?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
Bartman
Posts: 366
Joined: Fri Jan 03, 2020 2:39 pm

How to let my fonts smaller?

Post by Bartman »

The font size of the table captions should be the same. The package caption can set the font size for all captions in a document or only for one.
User avatar
Ijon Tichy
Posts: 640
Joined: Mon Dec 24, 2018 10:12 am

How to let my fonts smaller?

Post by Ijon Tichy »

Don't use capitals for all letters. Mixed case text is less wide and better to read.
\documentclass{article}

\begin{document}

\begin{table}
 \caption{SUMMARY STATISTICS FOR CONTRIBUTIONS BY INDIVIDUAL CONTRIBUTORS}
 \addtocounter{table}{-1}%
 \caption{Summary statistics for contributions by individual contributors}
\end{table}
  
\end{document}
BTW: Terms in capitals should be letter-spaced, to improve the readability and typograph:
\documentclass{article}
\usepackage{microtype}
\begin{document}

\begin{table}
 \caption{\textls{% Use poor man's letter spacing of microtype
     SUMMARY STATISTICS FOR CONTRIBUTIONS BY INDIVIDUAL CONTRIBUTORS}}
 \addtocounter{table}{-1}%
 \caption{SUMMARY STATISTICS FOR CONTRIBUTIONS BY INDIVIDUAL CONTRIBUTORS}
 \addtocounter{table}{-1}%
 \caption{Summary statistics for contributions by individual contributors}
\end{table}
  
\end{document}
Image
Post Reply