[Tex/LaTex] Looking for upright calligraphic L with little loop on top

fonts

I'm looking for a calligraphic / script letter L with a little loop on the top.

\mathcal{L} from amsfonts doesn't have the little loop:

enter image description here

\mathscr{L} from mathrsfs has a loop, but it is too slanted for my taste:

enter image description here

I'm looking for a version where the vertical line is very straight, and there is a (small) loop on the top. Can anyone recommend a package or font?

Best Answer

You can access a less-slanted calligraphic "L" by loading the mathalfa package with the option scr=rsfso and typing \mathscr{L}:

enter image description here

\documentclass{article}
\usepackage[scr=rsfso]{mathalfa}
\begin{document}
$\mathscr{L}$
\end{document}

Addendum" As @Dan has pointed out, the same result may be achieved by loading the rsfso package with the option scr:

\documentclass{article}
\usepackage[scr]{rsfso}
\begin{document}
$\mathscr{L}$
\end{document}