7

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?

jdm
  • 1,035

1 Answers1

9

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}
Mico
  • 506,678
  • 4
    For a minimal solution, use just the package rsfso. Load it without options to get the rsfso font for \mathcal. Load it with the option [scr] to keep the old \mathcal and add a new \mathscr command to produce the rsfso font. – Dan Nov 29 '13 at 22:17