两个矩阵旁边的垂直括号

两个矩阵旁边的垂直括号

如何在这两个垂直堆叠的矩阵的右侧画一个花括号?

在此处输入图片描述

这是矩阵的 MWE:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}

\begin{document}
$$
X = \begin{bmatrix}
x & \cdots & x\\
\vdots & \ddots & \vdots\\
x & \cdots & x
\end{bmatrix}
$$
$$
Y = \begin{bmatrix}
y & \cdots & y\\
\vdots & \ddots & \vdots\\
y & \cdots & y
\end{bmatrix}
$$
\end{document}

答案1

在此处输入图片描述

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\[
\left.
\begin{aligned}
X &= \begin{bmatrix}
x & \cdots & x\\
\vdots & \ddots & \vdots\\
x & \cdots & x
\end{bmatrix}
\\
Y &= \begin{bmatrix}
y & \cdots & y\\
\vdots & \ddots & \vdots\\
y & \cdots & y
\end{bmatrix}
\end{aligned}x
\right\}Z
\]
\end{document}

相关内容