description環境では、
\itemの引数[ ]のなかの項目ラベルが、ゴシックとなりますが、これをゴシックでない、地の文とおなじフォントで出力したいのですが、方法がありましょうか?
当方は,
Win10, uplatex で運用中です。
お使いのクラスファイルが不明ですが、\descriptionlabel の再定義で可能だと思います。
% pLaTeX
\documentclass[dvipdfmx]{jsarticle}
%%%\newcommand*\descriptionlabel[1]{\normalfont\headfont #1\hfil}%% オリジナル
\renewcommand*\descriptionlabel[1]{\normalfont #1\hfil}
\pagestyle{empty}
\begin{document}
\begin{description}
\item[ほげ]ふがふが
\item[ふが]なんちゃらかんちゃら
\end{description}%
\end{document}
% pLaTeX
\documentclass[dvipdfmx]{jsarticle}
%%%\newcommand*\descriptionlabel[1]{\normalfont\headfont #1\hfil}%% オリジナル
\renewcommand*\descriptionlabel[1]{\normalfont #1\hfil}
\pagestyle{empty}
\begin{document}
\begin{description}
\item[ほげ]ふがふが
\item[ふが]なんちゃらかんちゃら
\end{description}%
\end{document}