Typesetting symbols like "ΔF" in TraditionalForm
In Mathematica, I'm plotting a function with an axis labeled by "ΔF". As is typical for Mathematica, TraditionalForm gets wrapped around ΔF before it is displayed. The trouble is that this label looks out of place, as it isn't italicized l开发者_JAVA技巧ike other symbols on the plot that are composed of single characters. Is there a way to force TraditionalForm to italicize ΔF? I have tried using ┆is┆ (\[InvisibleSpace])
, but that gets displayed as F Δ
instead, which is not what I intended. Thanks for the help!
Not completely sure that this is what you want, but anyway ...
Try
ListLinePlot[{{0, 0}, {1, 1}},
AxesLabel -> Style["\[CapitalDelta]F", Italic]]
How about
ListLinePlot[{{0, 0}, {1, 1}}, AxesLabel -> Row[{\[CapitalDelta], F}]]
精彩评论