如何在使用“词汇表”的描述中使用逗号?

如何在使用“词汇表”的描述中使用逗号?

如何在名称中使用逗号glossaries

\newglossaryentry{smth}
{
  name=somthing (s., smthg),
  description={description}
}

答案1

将您的代码更改为...

\newglossaryentry{smth}
{
  name={somthing (s., smthg)},
  description={description}
}

包括在名称={,,,,} ;)

相关内容