Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
0

Add a text in Latex in front of a result

asked 5 years ago

Cyrille gravatar image

updated 4 years ago

%display latex var('A, x, y, l, alpha, beta, R, p_x, p_y'); U= Ax^(alpha)y^(beta); show(U)

this print U. But I would like to see "U(x) = ..." in a larger font that the standard one which is too small printed on a large device. More generaly , I would like to print some sentences before to disply a result

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
2

answered 5 years ago

Emmanuel Charpentier gravatar image

That's two (very different) questions in one.

1) To concatenate various LATEX (math) elements, the LatexExp function is well suited. In your case,

LatexExpr("U(x)="+latex(U))

yelds:

U(x)=Axαyβ.

2) "I would like to print some sentences before to display a result".

Your best bet is to write your text in LATEX, using Sagetex macros to insert relevant Sage snippets and their results.

This needs some learning ; I'd recommend reading "The not so short introduction to LATEX2ϵ" tor deciding if LATEX is for you. If you intend to spend more than a few weeks in your life using mathematics or writing structured texts (i. e. witth explicit outlines, cross-references and/or citations, etc..), it is probably worth it.

An alternative solution is to use Sage's Jupyter notebook. This will allow you to intersspede math or graphics "cells" between tet cells, that can receive some Markdown formatting. Markdown is much lighter than LATEX, therefore faster to learn, and might be sufficient for quick n' dirty tasks. But its possibilities are much more limited.

Preview: (hide)
link

Comments

I use BakomaTeX since 20 years and before other Latex systems. My question was only for a notebook presentation

Cyrille gravatar imageCyrille ( 5 years ago )

I use BakomaTeX since 20 years and before other Latex systems. My question was only for a notebook presentation

You didn't specify that in your question.My answer stands.

Since you already know LATEX, you might try to (ab)use LatexExpr to create a minipage rendering what you want. But I have trouble seeing the point...

Emmanuel Charpentier gravatar imageEmmanuel Charpentier ( 5 years ago )
1

answered 4 years ago

Juanjo gravatar image

updated 4 years ago

You may use something like this:

var('A, x, y, alpha, beta')
U = A*x^(alpha)*y^(beta)
text = fr"""
<h3>This is a title</h3>
<p>This is some text explaining several
interesting things. <strong>HTML</strong> can be used
to format these lines.</p>
<p>Now we write an inline mathematical expression
$U(x,y)={latex(U)}$, as well as a displayed one:
$$\frac{{\partial^2 U}}{{\partial x \partial y}}(x,y)=
  {latex(diff(U,x,y))}$$</p>
"""
show(html(text))

The result is similar to:


This is a title

This is some text explaining several interesting things. HTML can be used to format these lines.

Now we write an inline mathematical expression U(x,y)=Axαyβ as well as a displayed one: 2Uxy(x,y)=Aαβxα1yβ1


Preview: (hide)
link

Your Answer

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

Add Answer

Question Tools

1 follower

Stats

Asked: 5 years ago

Seen: 1,617 times

Last updated: Apr 23 '20