
¿Alguien puede ayudarme con un ejemplo de una plantilla de tabla LaTeX para un tamaño de fuente mínimo de 8 puntos?
Por ejemplo, quiero hacer una tabla como la siguiente, pero no estoy seguro de cómo hacerla con un tamaño de fuente de 9 puntos. Si necesito insertar algún comando, ¿podrían ayudarme?
\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.
Respuesta1
ya que ha utilizado la 11pt
opción, 9 puntos (que solicita en la pregunta, a pesar de que dice 8 puntos en el título) es\footnotesize
simplemente agréguelo antes de la tabla.
\documentclass[a4paper,11pt]{article}
\begin{document}
\begin{table}[htp] % don't use [h!] it usually generates a warning.
% better to use \centering than `center` in a float as `table` already adds space.
\centering
\caption{Your first table.}
\label{tab:table1}
\footnotesize
%^^^^^^^^^^^^%
\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{table}
\end{document}