Resize matrix in latex beamer
Posted
by John Jiang
on Stack Overflow
See other posts from Stack Overflow
or by John Jiang
Published on 2010-04-28T05:48:23Z
Indexed on
2010/04/28
5:53 UTC
Read the original article
Hit count: 388
Hi I was wondering how to resize matrices in a beamer environment. Currently I am writing the following code:
\begin{align*}
\left( \begin{array}{ccccccc}
0 & 1 & & & & & \\
-1 & 0 & & & & & \\
& & 0 & 1 & & & \\
& & -1 & 0 & & & \\
& & & & \ddots & & \\
& & & & & 0 & 1 \\
& & & & & -1 & 0
\end{array} \right)
\end{align*}
and the matrix takes up almost a whole page. I would like it to be about half a page in height.
© Stack Overflow or respective owner