有没有办法在 LaTeX 中实现这种符号?

有没有办法在 LaTeX 中实现这种符号?

多行张量乘法

我正在尝试从 overleaf 中获取此符号。希望得到一些指导。我尝试过,但C3 \choose C2 \choose C1没有成功。

答案1

正如 David Carlisle 和 @daleif 已经指出的那样,基于 LaTeX 的解决方案可以基于加载包amsmath并使用其pmatrix(“括号矩阵”)环境。

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath} % for 'pmatrix' environment
\newcommand\myvec[1]{\begin{pmatrix} #1_3 \\ #1_2 \\ #1_1 \end{pmatrix}}
\begin{document}
\[
\myvec{\mathbf{C}} = \myvec{\mathbf{A}} \otimes \myvec{\mathbf{B}} =
\begin{pmatrix} 
  \mathbf{A}_3 \times \mathbf{B}_3 \\ 
  \mathbf{A}_2 \times \mathbf{B}_2 \\ 
  \mathbf{A}_1 \times \mathbf{B}_1 
\end{pmatrix}
\]
\end{document}

答案2

amsmath这是涉及环境的标准方式的 TABstack 替代方案pmatrix

\documentclass{article}
\usepackage{amsmath,tabstackengine}
\stackMath
\setstackgap{L}{1.2\normalbaselineskip}
\begin{document}
\[
\parenVectorstack{\mathbf{C}_3\\\mathbf{C}_2\\\mathbf{C}_1}
=
\parenVectorstack{\mathbf{A}_3\\\mathbf{A}_2\\\mathbf{A}_1}
\otimes
\parenVectorstack{\mathbf{B}_3\\\mathbf{B}_2\\\mathbf{B}_1}
=
\parenVectorstack{\mathbf{A}_3\times\mathbf{B}_3\\
                  \mathbf{A}_2\times\mathbf{B}_2\\
                  \mathbf{A}_1\times\mathbf{B}_1}
\]
\end{document}

在此处输入图片描述

答案3

图片

\begin{pmatrix}
C_3 \\ C_2 \\ C_1
\end{pmatrix}
=
\begin{pmatrix}
A_3 \\ A_2 \\ A_1
\end{pmatrix}
\otimes
\begin{pmatrix}
B_3 \\ B_2 \\ B_1
\end{pmatrix}
=
\begin{pmatrix}
A_3 \times B_3 \\ A_2 \times B_2 \\ A_1 \times B_1
\end{pmatrix}

https://latex.codecogs.com/eqneditor/editor.php

相关内容