Text formatting + writing a matrice

  • Thread starter Thread starter JamesGoh
  • Start date Start date
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 2K views
JamesGoh
Messages
140
Reaction score
0
What button in the text formatting allows you to create perfectly aligned matrices ?
 
Physics news on Phys.org
JamesGoh said:
What button in the text formatting allows you to create perfectly aligned matrices ?

Do you mean like using "code" tags to get uniformly spaced text? Or do you mean creating matrices in LaTeX?
 
You can enter a matrix (there's no such word as matrice) using LaTeX like this:
[ tex ]\ begin{bmatrix}1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \ end{bmatrix}[ /tex ]

This LaTeX code (with the extra spaces removed from the tex tags and before begin and end) produces this matrix:
[tex]\begin{bmatrix}1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix}[/tex]

There are several other ways to do this, of which this technique is probably the simplest. If you want the matrix surround with parentheses instead of brackets, use pmatrix in both places.