My aim is to title my plot with a LaTeX style.
My code is the following
using Plots
using LaTeXStrings
V= "My Title"
plot([1,2],[1,2], title=L"&(V)")
But it does not work. I already used title=latexstring(V)
, but the space disappeared (This idea come from LaTeX code for titles, labels,... with Plots.jl )
PS : Make title=L"My Title"
is not a solution in my context
Thanks in advance