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