What are precise steps to get pretty or latex printing? I've tried the
following with no success

I load up ipython using
$ ipython notebook

I then start a new notebook and enter
from sympy import *
%load_ext sympy
x = Symbol('x')
Integral(x**2, (x, 0, 1))

The output I get is
Integral(x**2, (x, 0, 1))

If I use
pprint(Integral(x**2, (x, 0, 1)))
I get an ascii integral
  1
  /
 |
 |   2
 |  x  dx
 |
/
0






On Dec 28, 7:30 am, Mateusz Paprocki <[email protected]> wrote:
> Hi,
>
> On 28 December 2011 16:25, Matthew Rocklin <[email protected]> wrote:
>
> > I just took a look at the ipython 0.12 notebook interface and it's very
> > neat.
> > Has anyone played around with making this work well with sympy printing
> > (either latex or unicode)?
>
> There is an extension for sympy which can be loaded with:
>
> %load_ext sympy
>
> This will setup latex pretty printing.
>
>
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "sympy" group.
> > To post to this group, send email to [email protected].
> > To unsubscribe from this group, send email to
> > [email protected].
> > For more options, visit this group at
> >http://groups.google.com/group/sympy?hl=en.
>
> Mateusz

-- 
You received this message because you are subscribed to the Google Groups 
"sympy" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sympy?hl=en.

Reply via email to