我正在尝试一些我能找到的不同的书法字体:
http://www.tug.dk/FontCatalogue/calligraphicalfonts.html
但是注意到法语草书有些奇怪,即没有在部分中使用它的命令,而是将其作为“\normalfont”的默认字体加载,即:
\usepackage[default]{frcursive}
\usepackage[T1]{fontenc}
我想知道为什么会这样,如果我只想在某个部分使用这种字体,我该怎么做。所有其他字体似乎都以不同的方式工作。
提前致谢。
答案1
你可以尝试一下
\documentclass[12pt]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\begin{document}
\fontfamily{frc}\selectfont\Large\bfseries test
\end{document}
答案2
另一个解决方案是:
\documentclass[12pt]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{frcursive}
\begin{document}
Normal text here...
{\cursive My cursive text here...}
Normal text here again...
\end{document}