pretty_print in interact labels
I have written the following interact.
How cant I get the labels right? For instance, I'd rather have $N_0$ rather than N0.
Can I achieve this with pretty_print?
I have written the following interact.
How cant I get the labels right? For instance, I'd rather have $N_0$ rather than N0.
Can I achieve this with pretty_print?
The only place where the N0
is not wtitten properly is on the input box. You ca fix it by replacing
N0=input_box(default=1)
with
N0=input_box(default=1, label='$N_0$')
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2018-01-25 23:31:39 +0100
Seen: 306 times
Last updated: Jan 26 '18
It looks fine for me. I see the 0 in indices as expected. Did you install mathjax properly?
One was hidden left to the input box.