blob: e6955c69d0854d9face2128a9c391cb49aaf4059 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
% This file is embedded in glossaries-extra-manual.pdf
% Example 8 The short-nolong abbreviation style
% Label: "ex:abbrvstyleshort-nolong"
% arara: pdflatex
% arara: pdfcrop
\documentclass[11pt]{article}
\pagestyle{empty}
\usepackage[T1]{fontenc}
\usepackage[colorlinks]{hyperref}
\usepackage{glossaries-extra}
\setabbreviationstyle{short-nolong}
\newabbreviation{ex}{SHRT FM}{long form}
\begin{document}
First: \gls{ex}[-insert]. Next: \gls{ex}[-insert].
Full: \glsxtrfull{ex}[-insert]. First plural: \glspl[prereset]{ex}[-insert].
\printunsrtglossaries
\end{document}
|