HOME
> Office programs
> Latex: How To Create A Matrix In Your Document
LaTeX: How to create a matrix in your document
LaTeX is mainly used to create scientific papers. It provides you with all the functions to simplify the creation of the document. If you need a matrix to better explain certain aspects of your work, that is also possible with the right tag.
How to create a matrix with LaTeX
You need matrices in many areas of mathematics and physics. If you need to create a scientific paper, you can use LaTeX, because this programming language provides you with all the necessary features. If you need a matrix to better illustrate and explain aspects of your work, you have several options to create it in LaTeX.- First, add the required package to your document via "usepackage{amsmath}".
- With this package you have six different ways to display a matrix according to your needs.
- Haben Sie das Paket hinzugefügt erstellen Sie Ihre Matrix über den folgenden Befehl:
- $\begin{matrix}
- 1 & 0 & 0 \\
- 0 & 1 & 0 \\
- 0 & 0 & 1 \\
- \end{matrix}$
- Dieser erstellt eine Matrix ohne Klammern. Ersetzen Sie „matrix“ mit anderen Befehlen, können Sie das Format dieser verändern.
- Mit „pmatrix“ fügen Sie runde Klammern hinzu, mit „bmatrix“ dagegen eckige oder mit „Bmatrix“ geschweifte Klammern.
- Zudem können Sie über „vmatrix“ eine vertikale Strich-Matrix erstellen.