
Kann mir bitte jemand mit einem Beispiel einer LaTeX-Tabellenvorlage für eine Mindestschriftgröße von 8 Punkt helfen?
Ich möchte beispielsweise eine Tabelle wie die folgende erstellen, bin mir aber nicht sicher, wie ich sie in der Schriftgröße 9 Punkt erstellen kann. Wenn ich einen Befehl einfügen muss, können Sie mir bitte helfen?
\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.
Antwort1
da Sie die Option 9pt verwendet haben 11pt
(was Sie in der Frage verlangen, obwohl im Titel 8pt steht), \footnotesize
fügen Sie das einfach vor der Tabelle hinzu.
\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}