14
Plot[Sin[x^2], {x, 0, 3}, AxesLabel -> {"x value", Sin[x^2]}]

In the above code give a graph. In the graph the axes fonts are too small. My problem is that, how can I enlarge the axes text x and x^2 without changing the basic.

user2378
  • 243
  • 1
  • 2
  • 4
  • 2
    Plot[Sin[x^2], {x, 0, 3}, AxesLabel -> {"x value", "Sin(x^2)"}, BaseStyle -> {FontSize -> 18}], will enlarge the axes labels. – Kheeyal Nov 11 '13 at 11:10

1 Answers1

20

This works:

Plot[Sin[x^2], {x, 0, 3}, 
 AxesLabel -> {
    Style["x value", Purple, FontFamily -> "Zapfino", FontSize -> 24], 
    Style[x^2, Orange, FontFamily -> "Zapfino", FontSize -> 24]
    }]

plot

cormullion
  • 24,243
  • 4
  • 64
  • 133