How to create curvy L in ROOT

Hi experts,
How can I creat curvy L in cern root.
In Latex lange, it can be created by:
\usepackage{ amssymb }
\mathcal{L}
or
\usepackage{ mathrsfs }
\mathscr{L}
How about that in cern root through TLatex?

 TLatex *lat = new TLatex();
 lat->DrawLatex(0.5,0.5,"\\mathscr{L}");

Note the double backslash.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.