Latex 入门词汇表

Latex 入门词汇表

我的词汇表中有几个条目,问题是单词之间没有水平空格。这些是我写下这些词的一些例子。插入一般文本后:\gls{shopfloor}这些词正确写为 shop floor。shop 和 floor 之间有空格。然而在词汇表中,这些词写为:

车间车间或工厂内进行生产(而非行政工作)的部分

我希望它看起来像这样,车间之间有空间

车间车间或工厂内进行生产(而非行政工作)的部分

 \newglossaryentry{shopfloor}
{
    name=shop floor,
    description={The part of a workshop or factory where production as distinct from administrative work is carried out}
}

已经尝试写name=shop\space floor但是没有用。

答案1

这个简单的代码产生了您想要的结果。

\documentclass{article}
\usepackage{glossaries}
\makeglossaries

 \newglossaryentry{shopfloor}
{
    name=shop floor,
    description={The part of a workshop or factory where production as distinct from administrative work is carried out}
}

\begin{document}

    \gls{shopfloor}
        
    \printglossaries        

\end{document}

A

答案2

\documentclass[10pt,a4paper]{report}
\usepackage[acronym,toc]{glossaries}

\makeglossaries

 \newglossaryentry{shopfloor}
{
    name=shop floor,
    description={The part of a workshop or factory where production as distinct from administrative work is carried out}
}

\begin{document}

    \gls{shopfloor}
        
    \printglossaries        

\end{document}

例子

相关内容