1

Why does the Greek Letter "ν" with esc+n+esc turn into the English letter "v" when used in graphics e.g. labeling a frame? Is there any solution to this, please? Thanks!

Example:

Plot[Sin[x], {x, 0, 5 \[Pi]}, Frame -> True, 
 FrameLabel -> {"\[Nu]", "\[Lambda]"}]
Michael E2
  • 235,386
  • 17
  • 334
  • 747
SciJewel
  • 379
  • 1
  • 9

1 Answers1

5

It is not turned into "v", it is just the way "nu" looks like in the default output font (Arial in my case). Use Style to use another FontFamily, or TraditionalForm.

Style["α β ν", FontFamily -> "Times New Roman"]

TraditionalForm["α β ν"]

Greek letters

Example for your plot:

Plot[Sin[x], {x, 0, 5 Pi}, Frame -> True, 
 FrameLabel -> {"ν", "λ"}, 
 LabelStyle -> {FontFamily -> "Times New Roman", FontSize -> 20}]

Plot

Domen
  • 23,608
  • 1
  • 27
  • 45