[Tex/LaTex] What’s different about French Cursive from all the other Calligraphical Fonts

fontspackages

I was trying out some of the different calligraphy fonts that I could find on:

http://www.tug.dk/FontCatalogue/calligraphicalfonts.html

But noticed something odd about French Cursive, which is that there is no command for using it in a section, instead you load it as the default font for "\normalfont" i.e.:

\usepackage[default]{frcursive}
\usepackage[T1]{fontenc}

I was wondering why that is and if I wanted to use this font for a section only, how I would do it. All the other fonts seem to work differently.

Thanks in advance.

Best Answer

You can try this

\documentclass[12pt]{article} 
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}


\begin{document}
\fontfamily{frc}\selectfont\Large\bfseries test
\end{document}
Related Question