Can somebody please help me with an example of a LaTeX table template for minimum fontsize of 8 point?
For example, I want to make a table like the following, but I am not sure how to make it of fontsize of 9 point. If I need to insert some command, can you kindly help me?
\documentclass[a4paper,11pt]{article}
\begin{document}
\begin{table}[h!]
\begin{center}
\caption{Your first table.}
\label{tab:table1}
\begin{tabular}{l|c|r} % <-- Alignments: 1st column left, 2nd middle and 3rd right, with vertical lines in between
\textbf{Value 1} & \textbf{Value 2} & \textbf{Value 3}\
$\alpha$ & $\beta$ & $\gamma$ \
\hline
1 & 1110.1 & a\
2 & 10.1 & b\
3 & 23.113231 & c\
\end{tabular}
\end{center}
\end{table}
\end{document}
Thanking you.
\footnotesizeis 8pt so you just need\footnotesize\begin{tabular}....\end{tabular}If you tried something and got an error show what input you made, and what error you got. – David Carlisle Aug 21 '20 at 09:51\footnotesize(8pt) or\small(9pt) before the table if you want a different font size. That is unrelated to tables, it is just how to select fonts in latex. – David Carlisle Aug 21 '20 at 10:28\footnotesizeto make 8bp fonts on a baselineskip which is 1em in the font existing at the point in the document where you make the switch. Better to specify the baselineskip explictly in the second argument. But yes then obviously if you use\footnotesizeyou will get that size. Did you try it? what is your question? – David Carlisle Aug 21 '20 at 10:44\smallbefore\begin{tabular}– David Carlisle Aug 21 '20 at 11:21