我有一张包含分数的表格。我不喜欢它看起来很小,而且变量看起来不清晰。有没有办法解决这个问题,或者增加分数的大小之类的?谢谢!!
\begin{table}[hbt!]
\centering
\caption{Bla bla bla.}
\small
\scalebox{1}{
\begin{tabular}[t]{c c}
\toprule
$\omega_{PEG}$ [wt\%] & $\left| \frac{\mu_{40 \unit{\celsius}} - \mu_{60 \unit{\celsius}}}{40 \unit{\celsius}-60 \unit{\celsius}} \right|$\\
\midrule
0 & 0\\
0 & 0\\
\bottomrule
\end{tabular}}
\label{tab:my_label}
\end{table}
答案1
正如@DavidCarlisle所提到的,您可以使用\dfrac
中的 (displaystyle) 命令amsmath
。另一种可能性是使用mfrac
中的 (mediumsized) 命令nccmath
。以下是说明这两种可能性的代码:
\documentclass{article}
\usepackage{amsmath, nccmath}
\usepackage{booktabs}
\usepackage{siunitx}
\begin{document}
\begin{table}[hbt!]
\centering
\caption{Bla bla bla.}
\begin{tabular}[t]{c c}
\toprule
$\omega_{PEG}$ [wt\%] & $\left| \dfrac{\mu_{40 \unit{\celsius}} - \mu_{60 \unit{\celsius}}}{40 \unit{\celsius}-60 \unit{\celsius}} \right|$\\
\midrule
0 & 0\\
0 & 0\\
\bottomrule
\end{tabular}
\vskip 2em
\begin{tabular}[t]{c c}
\toprule
$\omega_{PEG}$ [wt\%] & $\left| \mfrac{\mu_{40 \unit{\celsius}} - \mu_{60 \unit{\celsius}}}{40 \unit{\celsius}-60 \unit{\celsius}} \right|$\\
\midrule
0 & 0\\
0 & 0\\
\bottomrule
\end{tabular}
\label{tab:my_label}
\end{table}
\end{document}