Reputation: 484
I need very often curved, latin Symbols. For example out of this document:
I need something, that looks like the capital "L" and the capital "A". I need that for mathematical formulas. Already found out, that you can use
\usepackage{pifont}
in the preamble and for example
\Pisymbol{pzc}{76}
to print the character "76" out of the font "pzc". However I don't find any lists containing the fonts and its three-character-long name. Also possible is inside a math enviroment
\mathcal L
but it's not quite what I look for. It's not curved enough.
Upvotes: 1
Views: 2402
Reputation: 39002
Is \mathscr
curvy enough?
\documentclass{article}
\usepackage{mathrsfs}
\begin{document}
\[
\mathscr{L}
\mathscr{A}
\]
\end{document}
Upvotes: 1