level 4
frams
楼主
Plot 默认的刻度有点大,我想让它刻度小一些
l = Table[{i, i^2}, {i, 1, 10}];
ListLinePlot[l]
ListLinePlot[l, Ticks -> {{0, 1, 2, 3, 4}, Automatic}]

但是加了Scientific 后
ListLinePlot[l, PlotTheme -> "Scientific", Ticks -> {{0, 1, 2, 3, 4}, Automatic}]
Ticks 就没用了。
我想 PlotTheme -> "Scientific" 和 Ticks 一起用,有什么办法吗?
2018年06月15日 16点06分
1
l = Table[{i, i^2}, {i, 1, 10}];
ListLinePlot[l]
ListLinePlot[l, Ticks -> {{0, 1, 2, 3, 4}, Automatic}]

但是加了Scientific 后ListLinePlot[l, PlotTheme -> "Scientific", Ticks -> {{0, 1, 2, 3, 4}, Automatic}]
Ticks 就没用了。
我想 PlotTheme -> "Scientific" 和 Ticks 一起用,有什么办法吗?