Loading [MathJax]/jax/output/HTML-CSS/jax.js

First time here? Check out the FAQ!

Ask Your Question
3

show command latex

asked 4 years ago

UncountableSet gravatar image

updated 4 years ago

I use sage both within the cocalc interface and the jupyter interface. The show() command behaves differently in each and I'm trying to understand. Here's an example in cocalc: https://drive.google.com/file/d/1ZVMg...

The same example in jupyter: https://drive.google.com/file/d/1ZXaN...

The in-line latex in cocalc is rendered nicely, the same latex in jupyter isn't. I've included the %display latex directive in the jupyter example, but it doesn't seem to make a difference.

Preview: (hide)

3 Answers

Sort by » oldest newest most voted
2

answered 4 years ago

eric_g gravatar image

As a workaround, in the Jupyter notebook, use latex instead of show:

%display latex
x, y = var('x y')
f = x^2 + y^2
latex("f_x = " + latex(diff(f, x)))

fx=2x

Preview: (hide)
link
1

answered 4 years ago

Juanjo gravatar image

For a good control of the output in a Jupyter notebook, you could combine show, html and f-strings. For example,

var("x,y")
f = x^2 + y^2
show(html(f"The partial derivative of $f(x,y)={f}$ is $f_x(x,y)={latex(diff(f,x))}$"))

This yields

The partial derivative of f(x,y)=x2+y2 is fx(x,y)=2x

Another example:

u = vector([1,2,3])
v = vector([4,5,6])
text = fr"""
<strong>Solution</strong><br>
Let $\mathbf{{u}}={u}$ and $\mathbf{{v}}={v}$.
Then, $\mathbf{{u}}\times \mathbf{{v}} = {u.cross_product(v)}.
"""
show(html(text))

This is rendered as

Solution
Let u=(1,2,3) and v=(4,5,6). Then, u×v=(3,6,3).

Preview: (hide)
link
1

answered 4 years ago

UncountableSet gravatar image

Is there a way to get this approach to print something like u x v? This doesn't work:

latex("u \times v")

Preview: (hide)
link

Comments

You have to prefix the string by r (for "raw") because of the backslah in \times and use LatexExpr:

LatexExpr(r"u\times v")
eric_g gravatar imageeric_g ( 4 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

2 followers

Stats

Asked: 4 years ago

Seen: 1,094 times

Last updated: Dec 12 '20