词汇表设置缩略词和词汇表的自定义字体

词汇表设置缩略词和词汇表的自定义字体

我想使用词汇表包打印词汇表和缩写/首字母缩略词页面。但我需要使用自定义(公司内部)字体来制作标签和描述。

最小示例:

\documentclass[a4paper, oneside, 12pt]{scrbook}

\usepackage[utf8]{inputenc}
\usepackage[german]{babel}
\usepackage[T1]{fontenc}
\usepackage[hidelinks]{hyperref}
\usepackage{polyglossia}
\setdefaultlanguage[spelling=new]{german}
\usepackage[acronym,nopostdot]{glossaries}

\newacronym{te}{Test}{Test Test}
\newacronym{foo}{FooBar}{Foo Bar Foo Bar}

\makeglossaries

\begin{document}
    \printglossary[type=\acronymtype]

    Using the \gls{foo}. Using \gls{foo} again.

    Using the \gls{te}. Using \gls{te} again.   

\end{document}

我需要将标记的文本更改为\myfont在此处输入图片描述

我该如何设置\myfont每个缩略词和词汇表的标记?我不想\gls将其更改为不同的字体。

相关内容