使用 gls{} 时强调文本

使用 gls{} 时强调文本

我目前正在写我的硕士论文。我会分发 PDF 版本和打印版本。

由于超链接在打印版本中看起来不太好,我将使用超链接的草稿选项将其删除。不幸的是,这将导致\gls文本中的所有缩写和词汇表条目(均以 表示)不再突出。我想知道是否有一个选项可以强调在 中使用的文本\gls{}而不使用\emph{\gls{}},以便读者知道这些词在其他地方有解释。最后一个选项意味着需要大量手动工作来更改所有条目。

\documentclass{article}
\usepackage[style=super,toc,acronym]{glossaries}
\makeglossaries
\newglossarystyle{clong}{
    \renewenvironment{theglossary}%
    {\begin{longtable}{p{.3\linewidth}p{\glsdescwidth}}}%
        {\end{longtable}}%
    \renewcommand*{\glossaryheader}{}%
    \renewcommand*{\glsgroupheading}[1]{}%
    \renewcommand*{\glossaryentryfield}[5]{%
        \glstarget{##1}{##2} & ##3\glspostdescription\space ##5\\}%
    \renewcommand*{\glossarysubentryfield}[6]{%
        & \glstarget{##2}{\strut}##4\glspostdescription\space ##6\\}%
% Groupskip verhindert den leeren Platz nach anderen Buchstaben
%   \renewcommand{\glsgroupskip}{}
}

\newglossaryentry{ATL-g}{name= {ATL},
    description={Sich wiederholende Tätigkeiten, welche die psychischen und physischen menschlichen Grundbedürfnisse erfüllen}}
\newglossaryentry{ATL}{type=\acronymtype, name={ATL}, description={Aktivitäten des täglichen Leben}, first={Aktivitäten des täglichen Lebens (ATL)\glsadd{ATL-g}}, see=[Glossar]{ATL-g}}

\newacronym{ANN}{ANN}{Artificial Neuronal Network}
\begin{document}
\printglossary[style = clong, type=\acronymtype]
\newpage
\printglossary[style = clong, type=main]
\newpage

\gls{ATL} glossary test with \gls{ANN}

\end{document}

答案1

更新:

如果您使用,glossaries-extra您可以更改不同条目类型的文本格式:

\documentclass{article}
\usepackage[style=super,toc,acronym]{glossaries-extra}

\glssetcategoryattribute{general}{textformat}{emph}
\glssetcategoryattribute{acronym}{textformat}{emph}

\glssetcategoryattribute{general}{glossnamefont}{emph}
\glssetcategoryattribute{acronym}{glossnamefont}{emph}


\makeglossaries
\newglossarystyle{clong}{
    \renewenvironment{theglossary}%
    {\begin{longtable}{p{.3\linewidth}p{\glsdescwidth}}}%
        {\end{longtable}}%
    \renewcommand*{\glossaryheader}{}%
    \renewcommand*{\glsgroupheading}[1]{}%
    \renewcommand*{\glossaryentryfield}[5]{%
        \glstarget{##1}{##2} & ##3\glspostdescription\space ##5\\}%
    \renewcommand*{\glossarysubentryfield}[6]{%
        & \glstarget{##2}{\strut}##4\glspostdescription\space ##6\\}%
% Groupskip verhindert den leeren Platz nach anderen Buchstaben
%   \renewcommand{\glsgroupskip}{}
}

\newglossaryentry{ATL-g}{name= {ATL},
    description={Sich wiederholende Tätigkeiten, welche die psychischen und physischen menschlichen Grundbedürfnisse erfüllen}}
\newglossaryentry{ATL}{type=\acronymtype, name={ATL}, description={Aktivitäten des täglichen Leben}, first={Aktivitäten des täglichen Lebens (ATL)\glsadd{ATL-g}}, see=[Glossar]{ATL-g}}

\newacronym{ANN}{ANN}{Artificial Neuronal Network}

\begin{document}
\printglossary[style = clong, type=\acronymtype]
\newpage
\printglossary[style = clong, type=main]
\newpage

\gls{ATL} glossary test with \gls{ANN}

\end{document}

在此处输入图片描述


您可以通过重新定义来更改输入格式\glsentryfmt

\documentclass{article}
\usepackage{glossaries}
\renewcommand*{\glsentryfmt}{%
  \emph{\glslabel}%
}
\makeglossaries

\begin{document}
\newglossaryentry{utc}{name=UTC, description={Coordinated Universal Time}}
\newglossaryentry{adt}{name=ADT, description={Atlantic Daylight Time}}
\newglossaryentry{est}{name=EST, description={Eastern Standard Time}}

\gls{utc} is 3 hours behind \gls{adt} and 10 hours ahead of \gls{est}.

\printglossaries

\end{document}

相关内容