Code: Select all
\begin{table}
\caption {\label{tab:table1} SUMMARY STATISTICS FOR CONTRIBUTIONS BY INDIVIDUAL CONTRIBUTORS}
How to let it be smaller to ensure it could be within one line?
Code: Select all
\begin{table}
\caption {\label{tab:table1} SUMMARY STATISTICS FOR CONTRIBUTIONS BY INDIVIDUAL CONTRIBUTORS}
\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}
\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}