在我的词汇表中,我想引用其他词汇表项目,但我不希望这些链接出现在索引页面中。
以下是我的序言(经过编辑,可能缺少一些内容)
\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 术语条目是它们在词汇表中出现的页码,但我希望只有当它们出现在正文中时才列出。