hello, i am new in Plots.jl and i would like to put ticks in all my axis of the plot with framestyle=:box . Here is my code with the default function:
x = 0:0.1:2pi ; y1 = cos.(x)
default(fontfamily ="New Century Schoolbook Roman", framestyle=:box,gridstyle=:dot,minorticks=:true,gridcolor=:black, minorgridcolor=:black,minorgrid=true,minorgridalpha=0.2,minorgridstyle=:dot,gridalpha=0.4)
plot(x,y1)
Also how can i edit the length of the ticks(major and minor) ? Thank you.