How can I make a vector in this form?
Asked
Active
Viewed 135 times
1 Answers
4
You can do that in two ways: either with the mathtools package (needless to load amsmath) or with the blkarray package. Math tools defines rcases and drcases environments (the latter is the displaystyle version of the former):
\documentclass{article}
\usepackage{mathtools}
\usepackage{blkarray}
\begin{document}
\[ \begin{rcases} -1 \\ \hphantom{-} \vdots \\ -1 \end{rcases}m \qquad
\begin{blockarray}[t]{c \Right{\}}{\,$ m $}}-1 \\ \hphantom{-} \vdots \\ -1 \end{blockarray} \]
\end{document}
Bernard
- 271,350

