在 underbrace 中使用 \footnotesize

在 underbrace 中使用 \footnotesize

我想\footnotesize*在下划线文本中使用。
我的代码是:

\underbrace{x(t+\Delta t)V-x(t)V}_{ \footnotesize{\text{Change of \# of X molecules}}} 
&=-\underbrace{c}_{\footnotesize \substack{\text{\# of the reaction} \\ \text{per unit time}}} \cdot 
\underbrace{\binom{x(t)V}{a}}_{\footnotesize \substack{\text{choosing $a$ molecules}\\ \text{from $x(t)V$ of them}}} \cdot 
\underbrace{\binom{y(t)V}{b}}_{\footnotesize \substack{\text{choosing $b$ molecules}\\ \text{from $y(t)V$ of them}}} \cdot \Delta t

并且它表明

在此处输入图片描述

我可以检查是否\footnotesize应用于\substack环境,但不应用于 underbrace 中的普通文本。
我怎样才能缩小这个文本?
你能帮我吗?

答案1

\footnotesize、以及\tiny\scriptsize\small等都是文本模式宏,而不是数学模式宏。如果您想使用footnotesize而不是默认的\scriptsize,则需要发出此指令里面包装\text器。是的,全部 7 个实例\text

事实上,我以为你正在寻找减少进一步将字体大小增加到\tiny,而不是将其增加到\footnotesize

另外,还要检查是否对齐所有四个下支架。

在此处输入图片描述

\documentclass{article} % or some other suitable document class
\usepackage{amsmath} % for \underbrace macro
\begin{document}
\[
\underbrace{x(t+\Delta t)V-x(t)V\vphantom{\bigg(}}_{%
             \text{\tiny Change of \# of $X$ molecules}} 
=
-{\underbrace{c\vphantom{\bigg(}}_{%
   \substack{\text{\tiny \# of reactions} \\ 
             \text{\tiny per unit of time}}}} 
\cdot 
{\underbrace{\binom{x(t)V}{a}}_{%
   \substack{\text{\tiny choosing $a$ molecules}\\ 
             \text{\tiny from $x(t)V$ of them}}}} 
\cdot 
{\underbrace{\binom{y(t)V}{b}}_{%
   \substack{\text{\tiny choosing $b$ molecules}\\ 
             \text{\tiny from $y(t)V$ of them}}}}
\cdot 
\Delta t
\]
\end{document}

相关内容