LaTeX: How to add a matrix in a LaTeX document? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T09:12:55Z http://stackoverflow.com/feeds/question/14132 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/14132/latex-how-to-add-a-matrix-in-a-latex-document 11 LaTeX: How to add a matrix in a LaTeX document? Ashwin 2008-08-18T03:29:25Z 2009-05-18T01:28:50Z <p>How to add a matrix in LaTeX?</p> http://stackoverflow.com/questions/14132/latex-how-to-add-a-matrix-in-a-latex-document/14133#14133 5 Answer by Ashwin for LaTeX: How to add a matrix in a LaTeX document? Ashwin 2008-08-18T03:30:59Z 2008-08-19T02:52:27Z <p>For a matrix of the form:</p> <pre><code>M = x y z w </code></pre> <p>use the LaTeX code:</p> <pre><code>$M = \begin{array}{cc} x &amp; y \\ z &amp; w \\ \end{array}$ </code></pre> http://stackoverflow.com/questions/14132/latex-how-to-add-a-matrix-in-a-latex-document/15597#15597 13 Answer by Anthony Cramp for LaTeX: How to add a matrix in a LaTeX document? Anthony Cramp 2008-08-19T02:46:35Z 2008-08-19T02:46:35Z <p>Ash's answer typesets the matrix inline with the text. A (perhaps) nicer way to do this is to use the smallmatrix environment in the amsmath package. Add to the document preamble:</p> <pre><code>\usepackage{amsmath} </code></pre> <p>And then you can do:</p> <pre><code>$M = \begin{smallmatrix} a&amp;b\\ c&amp;d \end{smallmatrix}$ </code></pre> <p>If you want to bracket the matrix you can also do:</p> <pre><code>$M = \left( \begin{smallmatrix} a&amp;b\\ c&amp;d \end{smallmatrix} \right)$ </code></pre> <p>The amsmath package also offers the shortcut matrix environments which default to centered alignment for their columns:</p> <ul> <li>matrix: unbracketed matrix</li> <li>pmatrix: matrix surrounded by parentheses</li> <li>bmatrix: matrix surrounded by square brackets</li> <li>vmatrix: matrix surrounded by single vertical lines</li> <li>Vmatrix: matrix surrounded by double vertical lines</li> </ul> <p>This info found in "The LaTeX Companion".</p> http://stackoverflow.com/questions/14132/latex-how-to-add-a-matrix-in-a-latex-document/88713#88713 8 Answer by Joseph Holsten for LaTeX: How to add a matrix in a LaTeX document? Joseph Holsten 2008-09-17T23:35:30Z 2008-09-17T23:55:44Z <p>First: if you intend to do math in LaTeX, you SHOULD learn and use <a href="http://www.ams.org/tex/amslatex.html" rel="nofollow">AMS LaTeX</a>. The best reference is the <a href="ftp://ftp.ams.org/pub/tex/doc/amsmath/short-math-guide.pdf" rel="nofollow">Short Math Guide for LaTeX</a>. In this guide, you will learn that there are many different matrix macros available when you use the <code>amsmath</code> package (e.g., <code>\usepackage{amsmath}</code> ).</p> <p>To quote the document, </p> <blockquote> <p><strong>4.4. Matrices</strong> The environments <code>pmatrix</code>, <code>bmatrix</code>, <code>Bmatrix</code>, <code>vmatrix</code> and <code>Vmatrix</code> have (respectively) ( ), [ ], { }, | |, and || || delimiters built in. There is also a <code>matrix</code> environment sans delimiters, and an <code>array</code> environment that can be used to obtain left alignment or other variations in the column specs. [ed. To produce a matrix with parenthesis around it, use:]</p> </blockquote> <pre><code>\begin{pmatrix} \alpha &amp; \beta^{*}\\ \gamma^{*} &amp; \delta \end{pmatrix} </code></pre> <blockquote> <p>To produce a small matrix suitable for use in text, there is a <code>smallmatrix</code> environment [ed. here was a matrix appropriate for text mode] that comes closer to fitting within a single text line than a normal matrix. This example was produced by</p> </blockquote> <pre><code>\bigl( \begin{smallmatrix} a &amp; b\\ c &amp; d \end{smallmatrix} \bigr) </code></pre> <blockquote> <p>To produce a row of dots in a matrix spanning a given number of columns, use \hdotsfor. For example, <code>\hdotsfor{3}</code> in the second column of a four-column matrix will print a row of dots across the final three columns. </p> <p><em>Note</em>. The plain TeX form <code>\matrix{...\cr...\cr}</code> and the related commands <code>\pmatrix</code>, <code>\cases</code> should be avoided in LaTeX (and when the <code>amsmath</code> package is loaded they are disabled). </p> </blockquote> <p>Finally, I'd like to mention that, while it is possible to set matrices without AMS LaTeX, just use it. It offers so many benefits that until you get the hang of LaTeX, it's the best single macro package for math.</p> http://stackoverflow.com/questions/14132/latex-how-to-add-a-matrix-in-a-latex-document/826539#826539 0 Answer by arooaroo for LaTeX: How to add a matrix in a LaTeX document? arooaroo 2009-05-05T19:28:48Z 2009-05-05T19:28:48Z <p>I agree with Ashwin's simple approach. Sometimes you can't rely on amsmath being available, so if you're after straightforward matrices, then use straightforward Latex commands. See more at <a href="http://andy-roberts.net/misc/latex/latextutorial9.html" rel="nofollow">http://andy-roberts.net/misc/latex/latextutorial9.html</a> for how to wrap your 'array' in brackets.</p> http://stackoverflow.com/questions/14132/latex-how-to-add-a-matrix-in-a-latex-document/875917#875917 0 Answer by Selinap for LaTeX: How to add a matrix in a LaTeX document? Selinap 2009-05-18T01:22:01Z 2009-05-18T01:28:50Z <pre><code>$M = \left[ {\begin{array}{*{20}c} x &amp; y \\ z &amp; w \\ \end{array} } \right] $ $M = \left( {\begin{array}{*{20}c} x &amp; y \\ z &amp; w \\ \end{array} } \right) $ $M = \left| {\begin{array}{*{20}c} x &amp; y \\ z &amp; w \\ \end{array} } \right| $ </code></pre>