在下面的代码中,我创建了一些可由用户填充的文本字段,但是我无法选择用户应利用其写入的字体(在这种情况下为calligra)。如何选择要使用的字体?
\documentclass[a4paper,11pt]{article}
\usepackage{hyperref}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[italian]{babel}
\usepackage{newlfont}
\usepackage[top=0.1in, bottom=0.1in, left=0.125in, right=0.125in]{geometry}
\usepackage{calligra}
\usepackage{hyperref}
\def\LayoutTextField#1#2{#2}
\def\lbl#1{\hbox to 2cm {#1}}
\def\labelline#1#2{\lbl{#1}\vbox{\hbox{\TextField[name=#1,width=#2,]{\null}}\kern2pt\hrule}}
\def\q#1#2#3{\hbox to #2{\labelline{#1}{#3}}}
\begin{document}
\begin{Form}[]
\fbox{\q{\calligra Name}{ 5cm}{3cm}}\\
\fbox{\q{\calligra Attività}{5cm}{3cm}}\\
\fbox{\q{\calligra Retta}{5cm}{3cm}}
\end{Form}
\end{document}
在此先感谢所有可能回答的人