0

I have this plot:

Plot[1 - 3 (x/l)^2 + 2 (x/l)^3 /. l -> 1, {x, 0, 1}, 
AxesLabel -> {x, Superscript[\[Psi] , (1)] [x]}, 
PlotStyle -> AbsoluteThickness[4], 
AxesStyle -> AbsoluteThickness[1.5], BaseStyle -> {FontSize -> 14}]

But the rounded parentheses are hidden (and I need them :-) )! Can I force mathematica to show them in some way?

1 Answers1

1
Plot[1 - 3 (x/l)^2 + 2 (x/l)^3 /. l -> 1, {x, 0, 1}, 
 AxesLabel -> {x, Superscript[\[Psi], "(1)"][x]}, 
 PlotStyle -> AbsoluteThickness[4], 
 AxesStyle -> AbsoluteThickness[1.5], BaseStyle -> {FontSize -> 14}]

enter image description here

eldo
  • 67,911
  • 5
  • 60
  • 168