表格中所有文本的字体大小都变小

表格中所有文本的字体大小都变小

我想让整个表格的字体变小。我尝试了\small{table code}\begin{\small}{table code} \end{small},但不起作用。也许我必须使用包或任何方法;请帮忙。

答案1

例如,您可以{\scriptsize ... }在周围使用\begin{tabular}-\end{tabular}。这会将所有内容缩小到给定的大小。

例如:

\documentclass{article}
\usepackage{booktabs}
\begin{document}
\begin{table}[ht]
 \caption{Meteorological instruments.}
  \centering\scriptsize
   \begin{tabular}{l l }
\toprule
Measured parameter  &Sensor make and model [serial \#] \\
\midrule
Temperature         &Pt100 in Stevenson screen \\
Barometric pressure &Setra 278 (CS100) [3141007]\\
\bottomrule
   \end{tabular}
 \label{tab:sensors}
\end{table}
\end{document}

此示例使用booktabs规则包。

答案2

text

{\small% it is a switch not an environment
... your tabular
}

text

相关内容