I use PGFPlots.jl package in Julia to produce figures. I would like to have the title of figure being left aligned [instead of being centered by default]. Here is my MWE in Julia language:
using PGFPlots
p = Plots.Linear3(rand(10), rand(10), rand(10), mark = "none")
Axis(p, title = "(a)")
The title of the obtained figure is aligned center by default. How could I modify the above Julia code to have the title "(a)" being left aligned?
Thank you in advance.