A self-used Julia package consists of tools for making scientific figures using Makie.jl.
julia> ]
(@v1.8) pkg> add https://github.com/himcraft/MyMakieTools.jl
set_theme!(mytheme())
f=Figure()
ax=logaxis(f;title="using logaxis()",xlabel="x-label",ylabel="y-label")
f,ax,l=lines(1..10,sin)
savefig("figure_name",f,pdf=true,png=true,prefix="./figures/")