[Tex/LaTex] A table font size smaller than tiny

fontsizelyxtables

I have looked and there are answers for LaTeX documents, but not a way to implement it in LyX. If I have a table and it just does not fit, is there a way to get a text size smaller than \tiny in LyX? I am inserting my table using insert -> float -> table, and it looks great just a LITTLE too small.

Best Answer

If you really want to make sure your table becomes unreadable, you can use the \fontsize command to set the font size to whatever you like:

\documentclass{article}
\usepackage{lmodern,blindtext}

\begin{document}
\blindtext

\begin{table}[!h]
\fontsize{4}{4}\selectfont
\begin{tabular}{lllllll}
\hline
hat & einer & gemacht zu & werden um von & Buch Wollen & unter & auch so weiter \\ \hline
\end{tabular}
\end{table}

\fontsize{1}{1}\selectfont
\Blindtext
\end{document}

maximum tinyness