General ⇒ Curly braces part way alongside a matrix?
-
- Posts: 3
- Joined: Fri Jun 06, 2008 7:08 pm
Curly braces part way alongside a matrix?
And on the left hand side, I would like to indicate with a curly brace that the block A takes a rows, the block B takes b rows, and the block C takes c rows.
It is these "partial" curly braces that are really throwing me... any ideas from anyone would be *extremely* appreciated!
Best,
Susan
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Curly braces part way alongside a matrix?
I used the easybmat package, since I find it particularly useful to build block matrices. Refer to the package documentation.
Code: Select all
\documentclass{article}
\usepackage{easybmat}
\usepackage{amsmath}
\begin{document}
\[
\begin{BMAT}(r)[4pt,0pt,3cm]{c}{ccc}
a \text{ rows} \\
b \text{ rows} \\
c \text{ rows}
\end{BMAT}
\begin{BMAT}(r)[-2pt,0pt,3cm]{c}{ccc}
\left\lbrace \vphantom{\rule{1mm}{14pt}} \right. \\
\left\lbrace \vphantom{\rule{1mm}{14pt}} \right. \\
\left\lbrace \vphantom{\rule{1mm}{14pt}} \right.
\end{BMAT}
\left[
\begin{BMAT}(e)[2pt,3cm,3cm]{c.c.c}{c.c.c}
0 & 0 & A \\
0 & B & 0 \\
C & 0 & 0
\end{BMAT}
\right]
\]
\end{document}
Re: Curly braces part way alongside a matrix?
http://tug.ctan.org/tex-archive/info/ma ... thmode.pdf
It is a comprehensive review of mathematics in (La)TeX and it contains many useful examples.
- Kjell Magne Fauske
-
- Posts: 3
- Joined: Fri Jun 06, 2008 7:08 pm
Re: Curly braces part way alongside a matrix?
Best,
Susan