我想使用百分比(而不仅仅是数字大小)来更改此表中的字体大小,例如,我想将字体大小缩小 50%,我只需输入 0.5 即可缩小 50%
或者 Latex 在表格上有一个重新缩放命令?
\begin{table}[ht]
\setlength{\tabcolsep}{2pt}
\centering
\begin{tabular}{l|l|l|l}
\hline
\textbf{A type.} & \textbf{B type} & \textbf{C type} & \textbf{D type} \\ \hline
A &ABCD & 1 & 3 \\ \hline
B &ABCD &. 2 & 4 \\ \hline
\end{tabular}%
\caption{\label{font-table} Test table.}
\label{tab:test}
\end{table}
谢谢你的答案