blob: 1dbf3154bfa27e4568453e4bdad78b6de542bb54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
\documentclass{article}
\usepackage[colorlinks]{hyperref}
\usepackage[sanitize={description=false}]{glossaries}
\makeglossaries
\renewcommand{\glsseeitemformat}[1]{\textsc{\glsentryname{#1}}}
\newglossaryentry{pear}{name=pear,
description={an oddly shaped fruit}}
\newglossaryentry{apple}{name=apple,
description={firm, round fruit},
see=[see also]{pear}}
\newglossaryentry{banana}{name=banana,
description={a yellow fruit with an even odder shape than
a \protect\gls{pear}}}
\newglossaryentry{fruit}{name=fruit,
description={sweet, fleshy product of plant containing seed}}
\glssee{fruit}{pear,apple,banana}
\begin{document}
\gls{pear}, \gls{apple} and \gls{banana}.
\printglossaries
\end{document}
|