命名法 Nomgroup 字体类型更改

命名法 Nomgroup 字体类型更改

我的报告应该遵循一些指导方针,但我不知道如何更改它们。我已经阅读了 nomencl 描述,但找不到有关如何更改 nomgroups 字体的线索。我希望“latin”和“greek”与其他字体相同。我可能正在使用这种字体 \usefont{OT1}{phv}{b}{n} 这是它现在的样子的图片,以及我为此使用的代码。

预先感谢您的帮助。

\makenomenclature
\makeatletter
\newif\if@nomlist 

\newcommand*\nomlist{%
  \@nomlisttrue
  \list{}{%
    \labelwidth\nom@tempdim
    \leftmargin\labelwidth
    \advance\leftmargin\labelsep
    \itemsep\nomitemsep
    \let\makelabel\nomlabel}}


\renewcommand*\thenomenclature{%
  \@ifundefined{chapter}%
    {\section*{\nomname}\if@intoc\addcontentsline{toc}{section}{\nomname}\fi}%
    {\chapter*{\nomname}\if@intoc\addcontentsline{toc}{chapter}{\nomname}\fi}%
  \nompreamble
  \@nomlistfalse
}

\renewcommand\nomgroup[1]{%
  \if@nomlist\endlist\end{multicols}\fi
  \ifx#1A\relax
    \def\nomgroupname{Latin}%
  \else
    \ifx#1B\relax
      \def\nomgroupname{Greek}%
    \else
      \def\nomgroupname{Other}%
    \fi
  \fi
  \begin{multicols}{2}[\noindent\textbf{\textsf{\nomgroupname}}]
  \nomlist
}

\renewcommand*\nompreamble{}
\renewcommand*\nompostamble{\end{multicols}}
\makeatother

在此处输入图片描述

相关内容