Toby Burnett | 10 Feb 18:39

Notebook markdown display math question

Hi,

I tried to generate a matrix with the \begin{pmatrix} …\end{pmatrix} construct. It displays the matrix all on one line, apparently as if it does not recognize the \\ end of line that delimits rows. Is there an alternative? Where are the latex translation rules and or limitations documented?

 

--Toby Burnett

_______________________________________________
IPython-User mailing list
IPython-User <at> scipy.org
http://mail.scipy.org/mailman/listinfo/ipython-user
Brian Granger | 10 Feb 18:42
Picon
Gravatar

Re: Notebook markdown display math question

We have some bugs in the Markdown latex rendering.  For now, putting
triple \ will make it work:

\\\

Cheers,

Brian

On Fri, Feb 10, 2012 at 9:39 AM, Toby Burnett <tburnett <at> uw.edu> wrote:
> Hi,
>
> I tried to generate a matrix with the \begin{pmatrix} …\end{pmatrix}
> construct. It displays the matrix all on one line, apparently as if it does
> not recognize the \\ end of line that delimits rows. Is there an
> alternative? Where are the latex translation rules and or limitations
> documented?
>
>
>
> --Toby Burnett
>
>
> _______________________________________________
> IPython-User mailing list
> IPython-User <at> scipy.org
> http://mail.scipy.org/mailman/listinfo/ipython-user
>

--

-- 
Brian E. Granger
Cal Poly State University, San Luis Obispo
bgranger <at> calpoly.edu and ellisonbg <at> gmail.com
Fernando Perez | 10 Feb 18:43
Picon
Gravatar

Re: Notebook markdown display math question

Hi Toby.

On Fri, Feb 10, 2012 at 9:39 AM, Toby Burnett <tburnett <at> uw.edu> wrote:
> Hi,
>
> I tried to generate a matrix with the \begin{pmatrix} …\end{pmatrix}
> construct. It displays the matrix all on one line, apparently as if it does
> not recognize the \\ end of line that delimits rows. Is there an
> alternative? Where are the latex translation rules and or limitations
> documented?
>

Try putting a *third* \ at the end: use '\\\'  instead of '\\'.  If
that works, it's one more case of this:

https://github.com/ipython/ipython/issues/1381

Cheers,

f

Gmane