1

Why have the numbers disappeared from in the $X$ Axis ?

Is there some way to keep the Frame and having the numbers on the Axis?

Plot[
 {
  f[10, 1, 1, 2, 0, t]
  }
 , {t, 0, 19}
 , PlotRange -> {-5, 2}
 , LabelStyle -> {FontSize -> 22, FontFamily -> "Times", Black, Bold}
 , PlotStyle -> {{Darker[Blue], 
    Thickness[0.004]}, {Darker[Blue]}, {Darker[Blue]}, {Darker[
     Blue]}, {Darker[Blue]}}
 , PlotRangePadding -> 0
 , LabelStyle -> {FontSize -> 13}
 , AxesStyle -> Bold
 , Frame -> True
 , FrameLabel -> {t[sec], \[ScriptCapitalD]'[t]}
 , LabelStyle -> {FontSize -> 13}
 , AxesStyle -> Bold
 , FrameStyle -> {{Directive[FontColor -> Darker[Red]], 
    Automatic}, {Directive[FontColor -> Darker[Red]], Automatic}}
 ]

enter image description here

rhermans
  • 36,518
  • 4
  • 57
  • 149
Enrico M.
  • 961
  • 1
  • 6
  • 15
  • 1
    Using Frame for the plot causes this. This is expected. Compare Plot[Sin[x], {x, -6, 6}] and Plot[Sin[x], {x, -6, 6}, Frame -> True] – Lotus Jun 22 '18 at 10:10
  • @Lotus Is there some way to keep the frame and having the numbers on the axis? – Enrico M. Jun 22 '18 at 10:12
  • Look at this question for putting both frame ticks and axis ticks on the same plot. Also, note that you are using some style commands (as LabelStyle) more than once, and this is in general a bad practice. – Fraccalo Jun 22 '18 at 10:15

0 Answers0