[Tex/LaTex] How to use \footnotesize with longtable command

fontsizelongtable

I am using \longtable command in a thesis preamble. My problem is that my data are large numbers, and I need to reduce the size of the table to footnote size. I tried using \begin{footnotesize}\end{footnotesize} commands, it gave me an error message. What is the right way to reduce the size of the table with using a longtable?

Best Answer

This should work:

Text before the long table

{\footnotesize
\begin{longtable}{lll}
<data>
\end{longtable}}

Text after the long table
Related Question