如何抑制單一條目的詞彙表頁碼?

如何抑制單一條目的詞彙表頁碼?

在我的術語表中,我想引用其他術語表項目,但我不希望這些連結出現在索引頁面中。

這是我的序言(已編輯,因此可能缺少一些內容)

\documentclass[a4paper,11pt]{book}
% hyperref setup
\usepackage{hyperref}
\hypersetup{colorlinks,allcolors=blue}

% Glossaies

% Orig stuff
\usepackage[xindy,toc]{glossaries} % see http://en.wikibooks.org/wiki/LaTeX/Glossary
\renewcommand{\glsnamefont}[1]{\makefirstuc{#1}} % causes capitalisation of the first letter of each word in the glossary (http://www.latex-community.org/forum/viewtopic.php?f=5&t=9966)

% Dual Entries part
% 2= Label, 3 = abbreviation, 4= Long form, 5=description 
\newcommand*{\newdualentry}[5][]{%
\newglossaryentry{gls-#2}{name={#4},%
    text={#4\protect\glsadd{#2}},%
    description={#5},%
    #1
}%
\newacronym{#2}{#3\protect\glsadd{gls-#2}}{See \gls{gls-#2}}
}

\makeglossaries
\include{Glossary}
\begin{document}
}

這是詞彙表條目的範例

\newacronym{PCMRI}{PC-MRI}{Time-resolved Phase Contrast \gls{MRI}}
\newacronym{MRI}{MRI}{Magnetic Resonance Imaging}
\newglossaryentry{4DPCMRI}
{
    name = 4D PC-MRI,
    description = {Flow sensitive \gls{PCMRI} with velocity encoding in 3 directions acquired at a single plane or as an image stack}
}

目前,PCMRI 和 MRI 術語條目是它們出現在術語表中的頁碼,但我希望它們僅在出現在文字主體中時才列出。

相關內容