Comments on: Using LaTeX within WordPress http://www.emresururi.com/physics/?p=18 a blog about physics, computation, computational physics and materials... Mon, 20 Jun 2016 16:19:33 +0000 hourly 1 https://wordpress.org/?v=4.9.3 By: admin http://www.emresururi.com/physics/?p=18&cpage=1#comment-7 Fri, 23 Nov 2007 23:48:58 +0000 http://www.emresururi.com/physics/?p=18#comment-7 Solved the multi-lined entry problem by switching from standard plain TeX to AMS-LaTeX.

plain TeX code for a 3×3 matrix :
$$
\matrix{
1 & 2 & 3 \cr
4 & 5 & 6 \cr
7 & 8 & 9 \cr

}
$$

and the same matrix in AMS-LaTeX format:
\[
\begin{array}{*{20}c}
1 & 2 & 3 \\
4 & 5 & 6 \\
7 & 8 & 9 \\

\end{array}
\]

]]>