blob: 5d7f10c8c7c8be3cc262eedef8d3171c7d32d3a1 (
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
|
% arara: pdflatex
% arara: makeglossaries
% arara: pdflatex
% arara: pdflatex
\documentclass{report}
\usepackage[colorlinks]{hyperref}
\usepackage{glossaries-extra}
\makeglossaries
\newabbreviation{html}{HTML}{hypertext markup language}
\newabbreviation{xml}{XML}{extensible markup language}
\newabbreviation{svg}{SVG}{scalable vector graphics}
\begin{document}
\tableofcontents
\chapter{Sample}
First use: \gls{html}, \gls{xml} and \gls{svg}.
Next use: \gls{html}, \gls{xml} and \gls{svg}.
\printglossaries
\end{document}
|