GuiTaek
GuiTaek

Reputation: 484

How do I make single, curved characters?

I need very often curved, latin Symbols. For example out of this document: german longhand 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

Answers (1)

Is \mathscr curvy enough?

\documentclass{article}
\usepackage{mathrsfs}

\begin{document}

\[
\mathscr{L}
\mathscr{A}
\]

\end{document}

enter image description here

Upvotes: 1

Related Questions