
我正在嘗試為我的專案製作一個好看的表格,但是當我嘗試增加表格第一行的字體大小時,它們會變得太大,並且部分字母會穿過頂線。我不想改變所有行的大小,而只想改變第一行的大小。有誰知道如何做到這一點?編碼如下
\documentclass{article}
\begin{document}
\begin{table}
\begin{tabular}{|l|c|c|} \hline
\Large{Table} & \Large{Figure} & \Large{Graph} \\ \hline
Good & Bad & Medium \\ \hline
1 & 2 & 3 \\ \hline
\end{tabular}
\end{table}
\end{document}
謝謝你!