Tagged Questions
3
votes
1answer
84 views
Manipulate a Plot that contains a variable that contains symbol
This snippet
mm = m
Manipulate[{mm, Plot[mm x, {x, 0, 1}]}, {m, 0, 1}]
(m is not defined anywhere) produces a sadly fixed ...
4
votes
2answers
90 views
Lesser and greater symbols in the axeslabels
I need a plot with $\Gamma^<$ as axeslabel using:
AxesLabel -> { $\Gamma^<$}
But I get an error.
AxesLabel -> { $\Gamma^{a<b}$} works though.
I think I've to tell mathematica that ...