texの表の文字サイズを一括変更する
\begin{tabular}の直前に文字サイズ変更コマンドを書く
code:tex
\begin{table}htbp
\centering
\large
\caption{表}
\begin{tabular}{rr}
実験日 & \date{2023-04-24} \\
レポート提出日 & \today
\end{tabular}
\end{table}
\caption{}には適用されないので注意
別途\caption{\large 表}と個別に指定する必要がある
#2023-05-14 13:35:24