Math & Science ⇒ type outside the borders of matrix
type outside the borders of matrix
I have the following problem. I have a matrix and i want to type some explanation against each row outside the borders of the matrix. For example (first row) -> some text. I'm out of idea. Will appreciate if someone can help me.
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
type outside the borders of matrix
you could use several array environments, as the following example suggests:
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\left[
\begin{array}{ccc}
1 & 2 & 3\\
4 & 5 & 6\\
7 & 8 & 9
\end{array}
\right]\hspace{-5pt}
\begin{array}{l}
\}\\ \\
\}\\
\end{array}
\begin{array}{l}
\text{some explanatory text.}\\ \\
\text{some other text.}\\
\end{array}
\]
\end{document}
Re: type outside the borders of matrix
