At 01:40 AM 9/12/2005, Jilani Khaldi wrote:
Hi All,
how tow write these matrices in Context?

% []
\begin{bmatrix}
1&2\\
3&4
\end{bmatrix}

ConTeXt uses Plain TeX syntax for math, mostly. Thus, you use Plain TeX's \matrix command to create the matrices:

\left[\matrix{
  1&2 \cr
  2&4 \cr
}\right]

% {}
\begin{Bmatrix}
1&2\\
3&4
\end{Bmatrix}

\left\lbrace\matrix{
  1&2 \cr
  3&4 \cr
}\right\rbrace

Hope that helps,
- Brooks

_______________________________________________
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context

Reply via email to