Searching throughout the internet, I have found to hinting solutions
- Using boondox/dutchcal/mathalfa http://tex.stackexchange.com/questions/ ... ic-symbols, or
- Using frcursive http://latex-community.org/forum/viewtopic.php?t=1404
What I am using for option 1. is the following:
Code: Select all
\usepackage{mathalfa}
...
\mathbcal{c}
Using option 2. as follows:Package mathalfa Error: There is no bold variant of the calligraphic font. ... = \left(\mathcal{A},\mathcal{B},\mathbcal{c}
Code: Select all
\usepackage{frcursive}
\newenvironment{frcseries}{\fontfamily{frc}\selectfont}{}
\newcommand{\textfrc}[1]{{\frcseries#1}}
\newcommand{\mathfrc}[1]{\text{\textfrc{#1}}}
...
\mathfrc{c}
But if I use dutchcal for option 1. asFont OT1/frc/m/it/12=frcsl12 at 12.0pt not loadable: Metric (TFM) file not found. ... \left(\mathcal{A},\mathcal{B},\mathfrc{c}
Code: Select all
\usepackage{dutchcal}
...
\mathbcal{c}
Is there any easy way to get calligraphic lowercase letters in math mode?