我想将表格的全局大小设置为 8pt。该怎么做?
我确实看到了文章。
提供的解决方案马可·丹尼尔如果您想将字体大小设置为小/大,而不需要特定的数字,这种方法非常有效。
任何帮助都是很好的。
@Darko 请在这里找到 MWE
\documentclass[a4paper,11pt]{article}
\usepackage{booktabs}
\fontsize{8 pt}{10 pt}{\selectfont}
\usepackage{lipsum}
\begin{document}
\lipsum[1-2]
\noindent\begin{table}[htb!]
\centering
\def\arraystretch{0.8}% 1 is the default, change whatever you need
\caption{sum.}
\label{tab: sum}
\begin{tabular}{@{}lllc@{}}
\toprule
\textbf{\#} & \textbf{Scope} & \textbf{Activity} & \textbf{Month} \\
\midrule
1 & foo & bar & M1-M24\vspace{1mm}\\
\bottomrule
\end{tabular}
\end{table}
\end{document}