1

Can anyone tell me where the script L in the following snippet comes from? It's not \mathcal{L}:

enter image description here

Werner
  • 603,163
rogerl
  • 3,583
  • 5
  • 29
  • 39

1 Answers1

4

The mathrsfs package provides \mathscr for script mathematical letters, rather than redefining \mathcal:

\documentclass{article}
\usepackage{mathrsfs}% http://ctan.org/pkg/mathrsfs
\begin{document}
$\mathscr{L}u$
\end{document}

enter image description here

Also consider reading this entry on the TeX FAQ: Better script fonts for maths.

Werner
  • 603,163