Hi.
I am going to post a bunch of computer code and need to use the LaTeX verbatim environment. It works in MathJax but also prints the '\begin{verbatim}' and '\end{verbatim}' tags. If I don't use the verbatim environment something else interprets the R code and it won't render at all.
A minor bug considering how great MathJax is! It is truly wonderful to be able to print LaTeX quality mathematics on a webpage!
$$
\begin{verbatim}
> A2 <- matrix(c(0,1,0,0,1,1,0,1,1,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0),5,5 )
> eigen(A2, symmetric=TRUE)
$values
[1] 2.3429231 0.4706834 0.0000000 -1.0000000 -1.8136065
$vectors
[,1] [,2] [,3] [,4] [,5]
[1,] -0.4734862 0.4559848 0.000000e+00 7.071068e-01 -0.2605546
[2,] -0.6358555 -0.2413603 2.220446e-16 -7.771561e-16 0.7330982
[3,] -0.2713941 -0.5127870 7.071068e-01 -1.110223e-16 -0.4042212
[4,] -0.2713941 -0.5127870 -7.071068e-01 -2.029962e-16 -0.4042212
[5,] -0.4734862 0.4559848 -2.220446e-16 -7.071068e-01 -0.2605546
\end{verbatim}
$$