直接在等式下方书写

直接在等式下方书写

我想写一个用矩阵表示的方程,并在该方程下定义矩阵的名称。

在此处输入图片描述

类似这样的。这可能吗?

答案1

像这样吗?

在此处输入图片描述


附录,由 @egreg 的评论提示:对于手头的对象,下括号可能过厚。可以通过向宏添加可选参数来覆盖默认厚度\underbracket。例如,您可以替换

\underbracket{\begin{pmatrix} ... \end{pmatrix}}_{\coloneqq a}

\underbracket[0.7pt]{\begin{pmatrix} ... \end{pmatrix}}_{\coloneqq a}

请给出介于和之间的厚度值,0.4pt1pt尝试确定哪个值最终会产生看起来具有“正确”厚度的下支架。


\documentclass{article} 
\usepackage{mathtools}
\begin{document}
\[
{\underbracket{
   \begin{pmatrix}
      \cdot & \cdot & \cdot \\
      \cdot & \cdot & \cdot \\
      \cdot & \cdot & \cdot  
   \end{pmatrix}}_{\coloneqq a}}
\cdot
{\underbracket{
   \begin{pmatrix}
      \cdot & \cdot & \cdot \\
      \cdot & \cdot & \cdot \\
      \cdot & \cdot & \cdot
   \end{pmatrix}}_{\coloneqq b}}
=
{\underbracket{
   \begin{pmatrix}
      \cdot & \cdot & \cdot \\
      \cdot & \cdot & \cdot \\
      \cdot & \cdot & \cdot
   \end{pmatrix}}_{\coloneqq c}}
\]
\end{document} 

答案2

当您使用 Unicode 数学时,则\underbracket定义。例如在 OpTeX 中:

\fontfam[lm]
$$
  \underbracket{\pmatrix{a&b&c\cr d&e&f}}_{=a}
  \cdot
  \underbracket{\pmatrix{u&v\cr w&x\cr y&z}}_{=b}
  =
  \underbracket{\pmatrix{p&q\cr r&s}}_{=b}
$$
\bye

底架

相关内容