3

I would like to have the Label called beta being shown with the Greek letter, without renaming the variable beta. This is my try so far, which is not what I want because Greek beta (β) is not substituting beta.

Manipulate[
 Plot[beta x , {x, 0, 1}], 
 {{beta, "β="}, 0, 1, Appearance -> "Labeled"}]
rhermans
  • 36,518
  • 4
  • 57
  • 149
Andrea G
  • 759
  • 3
  • 19

1 Answers1

4
Manipulate[
 Plot[beta x, {x, 0, 1}, PlotRange -> {0, 1}]
 , {{beta, 0, "β="}, 0, 1, Appearance -> "Labeled"}
 ]

enter image description here

rhermans
  • 36,518
  • 4
  • 57
  • 149