Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are the options to get \mathcal working for lower case letters?

Tags:

fonts

latex

that is I'd like $\mathcal{l}=\mathcal{L}$ to produce two letters. I know \mathcal{} works (predictably) on upper case letters only. Thanks.

like image 268
andrekos Avatar asked Feb 04 '23 08:02

andrekos


1 Answers

Try the following (in your preamble):

\DeclareFontFamily{OT1}{pzc}{}
\DeclareFontShape{OT1}{pzc}{m}{it}{<-> s * [1.10] pzcmi7t}{}
\DeclareMathAlphabet{\mathpzc}{OT1}{pzc}{m}{it}

Then $\mathpzc{l}=\mathcal{L}$ should work. Note that $\mathpzc{L}$ is not the same as $\mathcal{L}$.

The scaling is designed to make the \mathpzc font about the same size as the \mathcal font.

This is using Zapf Chancery which is the standard PostScript calligraphic font.

like image 190
Rob Hyndman Avatar answered Feb 16 '23 03:02

Rob Hyndman