Hello,
So I want to make an arrow in Epilog point at the numerical value 35.000 on the x-axis, and I also want to include text at the arrow to Illustrate what is happening at 35.000.
Here is how my code looks like:
Subscript[y, f][x_] := x/70000
Subscript[y, b][x_] := x/50000
Plot[{Subscript[y, f][x], Subscript[y, b][x]}, {x, 0, 70000},
PlotStyle -> {Red, Blue}, AxesLabel -> {"x(km)", "\!\(\*
StyleBox[SubscriptBox[\"y\", \"f\"],\nFontColor->RGBColor[1, 0, \
0]]\),\!\(\*
StyleBox[SubscriptBox[\"y\", \"b\"],\nFontColor->RGBColor[0, 0, \
1]]\)"}, Epilog -> {Arrow[{35000,
0.5}]}], Text["Hjulskifte", [{35.000 , 0.5}]]
Also I seem to have a problem with subscript when posting Mathematica code. Any way to disable it?
Problem: I don't get any arrow neither any text.