I’ve made some statements in this document that don’t actually tell
you the full truth, but it would clutter the document and cause
confusion if I keep writing “except when …” or “but you can
also do this, that or the other” or “you can do it this way but
you can also do it that way, but that way may cause complications
under certain circumstances”.
Abstract
The glossaries package is very flexible, but this means
that it has a lot of options, and since a user guide is supposed to
provide a complete list of all the high-level user commands, the main
user manual is quite big. This can be rather
daunting for beginners, so this document is a brief introduction
just to help get you started. If you find yourself saying,
“but how can I do…?” then it’s time to move on to the
main user manual.
As with all packages, you need to load glossaries with
Once you have loaded the glossaries package, you need to define
your terms in the preamble and then you can use them throughout the
document. Here’s a simple example:
In general, it’s best to choose a label that’s easy to remember and
makes the source code (reasonably) easy to read. In the above example, a better
label would be “sample”, the same as the term itself. However,
bear in mind that labels mustn’t contain non-expandable content.
The next example defines a term that’s actually a symbol.
In this case, the label must be
different from the provided term, which contains the commands to
typeset the symbol:
The next example defines a term with the label “svm” that has both
a long form (“support vector machine”) and a short form (“SVM”):
I suggest you try the above examples to make sure you have the
package correctly installed. If you get an “undefined control
sequence” error for any of the examples provided in this guide, check that the version
number at the top of this document matches the version you have
installed. (Open the log file and search for the line that
starts with “Package: glossaries” followed by a date and
version.)
Abbreviations are slightly different if you use the extension package
glossaries-extra (which needs to be installed separately).
This automatically loads glossaries so you don’t need to
explicitly load it:
If you still want to use
If you like, you can put all your definitions in another file (for
example, defns.tex) and load that file in the preamble using
Avoid explicitly using formatting commands in abbreviation definitions
as they can interfere with the underlying mechanism. Instead, the
formatting should be done by the style. For example, suppose I want
to replace
As you can hopefully see from the above examples, there are two main ways of
defining a term: as a general entry (
The labels are identified in bold in the following:
With modern TeX installations you should now be able to use UTF-8
characters in the label, but beware of active characters. For
example, babel makes some punctuation characters, such as
For example, the following works:
The above examples are reasonably straightforward. The difficulty
comes if you want to display a sorted list of all the entries you
have used in the document. The glossaries-extra package
provides an easy way of listing all the defined entries:
The sort=none option isn’t essential in this case (there’s
no other sort option available for this document), but it prevents
the automatic construction of the sort value and so slightly
improves the document build time.
This example document uses the same command
(
Most users prefer to have an automatically sorted list that only
contains entries that have been used in the document, optionally
with a page list (indexing).
The glossaries package provides
three options: use TeX to perform the sorting (Option 1); use
makeindex to perform the sorting (Option 2); use xindy to
perform the sorting (Option 3). The extension package glossaries-extra
provides a fourth method: use bib2gls (Option 4).
The first option (using TeX) is the simplest method, as it doesn’t
require an external tool. It works best with at least version 3.0 of
the datatool-base package, which is provided with
datatool (and automatically loaded by glossaries).
That version introduced the ability to provide localisation support,
which needs to be installed separately. (See the datatool
manual for further details.)
To use this method, add
Try this out and run LaTeX (or pdfLaTeX) twice. The first
run won’t show the glossary. It will only appear on the second run.
This doesn’t include “turnip” in the glossary because that term
hasn’t been referenced (with commands like
The glossary has a vertical gap between the “carrot” term and the
“potato” term. This is because the entries in the glossaries are
grouped according to their first letter. If you don’t want this gap,
just add nogroupskip to the package options:
You may have noticed that I’ve used another command in the above examples:
Using TeX to sort the entries is the simplest but least efficient
method. If you have a large glossary, then you will have a
much faster build time if you use makeindex (Option 2)
or xindy (Option 3) or bib2gls (Option 4). If
you are using extended Latin or non-Latin characters, then
xindy or bib2gls are the recommended methods. These
methods are described in more detail in
§4.
The rest of this document briefly describes the main commands
provided by the glossaries package. (Most of these are also
available with glossaries-extra but may behave slightly
differently.)
When you use the glossaries package, you need to define
glossary entries before you can reference them. This is best
done in the document preamble, as shown in the earlier examples, or
in a separate file that’s input in the preamble.
These entries could be a word, phrase, abbreviation or symbol.
They’re usually accompanied by a description, which could be a short
sentence or an in-depth explanation that spans multiple paragraphs.
The simplest method of defining an entry is to use:
This command is a “short” command, which means that
can’t contain a paragraph break. If you have
a long description, you can instead use:
Examples:
If you use bib2gls with glossaries-extra then the
terms must be defined in a bib file. For example:
There are other keys you can use when you define an entry. For
example, the name key indicates how the term
should appear in the list of entries (glossary), but if the term should
appear differently when you reference it with
For example:
Another commonly used key is plural for specifying the
plural of the term. This defaults to the value of the text
key with an “s” appended, but if this is incorrect, just use the
plural key to override it:
Abbreviations can be defined using:
Before you define your acronyms, you need to specify which style to use with:
The glossaries-extra package provides improved abbreviation
handling with a lot more predefined styles.
With this extension package, abbreviations are defined using:
The plural forms for abbreviations can be specified using the
longplural and shortplural keys. For example:
It’s also possible to have both a name and a corresponding symbol.
Just use the name key for the name and the symbol key
for the symbol. For example:
With bib2gls you can define this entry in the bib file
as
Note that, while the sort key is advised for symbols when
using
Once you have defined your entries, as described above, you can
reference them in your document. There are a number of commands to
do this, but the most common one is:
If you are using the hyperref package (remember to load it
before glossaries)
If the entry was defined as an acronym (using
If you want the plural form, you can use:
If the term appears at the start of a sentence, you can convert the
first letter to uppercase (sentence case) using:
If you’ve specified a symbol using the symbol key, you can
display it using:
In §1, I mentioned that there are three options
you can choose from to create an automatically sorted glossary with the base
glossaries package. These are also available with the
extension package glossaries-extra along with a fourth
option. These four options are listed below in a little more detail.
Table 1 summarises the main advantages and
disadvantages. (There’s a more detailed summary in the main
glossaries user manual.) See also
Incorporating makeglossaries or makeglossaries-lite or bib2gls into the document build.
Note that makeindex and xindy are general purpose
indexing applications that are developed independently of
glossaries and glossaries-extra. This makes them harder
to integrate, as glossaries have more complex requirements than a
simple index, particularly for documents where some terms may only
appear in the description of another term. (There’s also the
possibility that they may change in a manner that becomes
incompatible with glossaries or may even be declared obsolete.)
The bib2gls application, on the other hand, is designed
specifically for, and developed alongside, the
glossaries-extra package.
2.Put
This option allows you to have different sort methods. For
example:
3.Run LaTeX twice on your document. (As you would do to
make a table of contents appear.) For example, click twice on
the “typeset” or “build” or “PDFLaTeX” button in your editor.
2.Put
3.Run LaTeX on your document. This creates files with the
extensions glo and ist (for example, if your
LaTeX document is called myDoc.tex, then you’ll have
two extra files called myDoc.glo and myDoc.ist).
If you look at your document at this point, you won’t see the
glossary as it hasn’t been created yet.
4.Run makeglossaries with the base name of your
document (without the tex extension). If
you have access to a terminal or a command prompt then you need
to run the command:
If you don’t know how to use the command prompt, then you can
probably configure your text editor to add
makeglossaries (or makeglossaries-lite)
as a build tool, but each editor has a
different method of doing this, so I can’t give a general
description. However, there are some guidelines in
Incorporating
makeglossaries or makeglossaries-lite or bib2gls into the document
build.
If you still have problems, try adding the automake
package option:
The default sort is word order (“sea lion” comes before “seal”).
If you want letter ordering you need to add the
order=letter package option
5.Once you have successfully completed the previous step,
you can now run LaTeX on your document again.
2.Add
3.Put
4.Run LaTeX on your document. This creates files with the
extensions glo and xdy (for example, if your
LaTeX document is called myDoc.tex, then you’ll have
two extra files called myDoc.glo and myDoc.xdy).
If you look at your document at this point, you won’t see the
glossary as it hasn’t been created yet.
5.Run makeglossaries with the base name of the
document (omitting the tex extension).
If you have access to a terminal or a command prompt then
you need to run the command:
The default sort is word order (“sea lion” comes before “seal”).
If you want letter ordering you need to add the
order=letter package option:
6.Once you have successfully completed the previous step,
you can now run LaTeX on your document again.
If you use xindy and the name only contains a command or
commands (such as
2.Add one or more
3.Put
4.Run LaTeX on your document. The record option
adds information to the aux file that provides
bib2gls with all required details for each resource set.
For example, if the file is called myDoc.tex:
5.Run bib2gls
6.Run LaTeX again.
If you are having difficulty integrating makeglossaries (or
makeglossaries-lite) or bib2gls
into your document build process, you may want to consider using
arara, which is a Java application that searches the
document for special comment lines that tell arara which
applications to run. For example, the file myDoc.tex might
start with:
The default glossary style uses the description environment
to display the entry list. Each entry name is set in the optional
argument of
By default, a full stop is appended to the description (unless you
use glossaries-extra). To prevent
this from happening use the nopostdot package option:
By default, a location list is displayed for each entry (except
when
Entries are grouped according to the first letter of
each entry’s sort value. By default a vertical gap is placed
between letter groups for most of the predefined styles. You can suppress this with the
nogroupskip package option:
If the default style doesn’t suit your document, you can change the
style using:
Examples:
If your glossary consists of a list of abbreviations and you also want to
specify a description as well as the long form, then you need to use
an abbreviation style that will suit the glossary style. For example,
use the long-short-desc acronym style:
Choose a glossary style that suits wide entry names. For example:
The glossaries package predefines a default
In the case of Options 2 or 3, all new glossaries must
be defined before
Since it’s quite common for documents to have both a list of terms
and a list of abbreviations, the glossaries package provides the
package option acronyms (or acronym), which
is a convenient shortcut for
There are some other package options for creating commonly used
lists: symbols (lists of symbols), numbers (lists
of numbers), index (an index). Since indexes don’t
typically have descriptions, the index option also defines:
For example, suppose you want a main glossary for terms, a list of
acronyms and a list of notation:
Each glossary is displayed using:
If you’re using bib2gls then each glossary is displayed
using:
There’s a convenient shortcut that will display all the defined
glossaries depending on the indexing method:
If you use Options 1 or 4, you don’t need to do anything different
for a document with multiple glossaries. If you use
Options 2 or 3 with the makeglossaries Perl script or the
makeglossaries-lite Lua script, you
similarly don’t need to do anything different to the document build
(compared to building a document with only one glossary).
If you use Options 2 or 3 without the helper makeglossaries
Perl script or makeglossaries-lite Lua script then you need to
make sure you run makeindex/xindy for each
defined glossary. The and arguments of
For example, suppose you have three glossaries in your document
(
Option 3:
Either use one makeglossaries call:
Option 4:
With bib2gls only one call is required:
Take care if you use the glossaries package with
hyperref. Contrary to the usual advice that hyperref
should be loaded last, glossaries (and glossaries-extra)
must be loaded after hyperref:
By default, if the hyperref package has been loaded, commands
like
If you want the hyperlinks suppressed the first time an entry is
used, but you want hyperlinks for subsequence references then use
the hyperfirst=false package option:
Take care not to use non-expandable commands in PDF bookmarks. This
isn’t specific to the glossaries package but is a limitation
of PDF bookmarks. Non-expandable commands include commands like
If you use glossaries-extra then use the commands that are
provided specifically for use in section headers. For example:
You can add a reference to another entry in a location list using
the see={ key when you define an entry.
The referenced entry (or entries) must also be defined.
}
For example:
Since the cross-reference appears in the location list, if you
suppress the location list using the nonumberlist package
option, then the cross-reference will also be suppressed. With
bib2gls, don’t use the nonumberlist package
option in this case, but instead use
save-locations=false in the resource
options. For example:
Semantic: Clostridium
Expands to the title of the
As
References the entry identified by first use. §3; 19
Short form font used by the “only” abbreviation styles.
Short form font used by the small-caps “sc” abbreviation styles.
Expands to the label of the default glossary.
Suppresses all glossary related hyperlinks. §7; 40
Simply expands to the value of the long field. Does nothing if the entry hasn’t been defined. May be used in expandable contexts provided that the long field doesn’t contain any fragile commands.
Simply expands to the value of the short field. Does nothing if the entry hasn’t been defined. May be used in expandable contexts provided that the short field doesn’t contain any fragile commands.
Simply expands to the value of the text field. Does nothing if the entry hasn’t been defined. May be used in expandable contexts provided that the text field doesn’t contain any fragile commands. §7; 41
For use within captions or section titles to display the formatted short form.
For use within captions or section titles to display the formatted text.
Long form font used by the “only” abbreviation styles.
Converts lowercase using the modern LaTeX3 case-changing command, which is expandable.
Used within the predefined glossary styles to apply a font change to the name.
Don’t expand field values when defining entries, except for those that explicitly have expansion enabled.
As
As
Set makeindex’s quote character to .
References the entry identified by symbol value. The argument will be inserted at the end of the link text. This command does not alter or depend on the first use flag. §3; 20
For use with bib2gls, this both sets up the resource options (which bib2gls can detect from the aux file) and inputs the glstex file created by bib2gls.
Defines a new glossary entry with the given label, type set to
Locally assigns
Defines a new glossary entry with the given label. The second argument is a comma-separated list of glossary entry keys. The third argument is the description, which may include paragraph breaks. §2; 11
Robust command that converts the first character of uppercase (sentence case). See the mfirstuc documentation for further details, either:
Opens the associated glossary files that need to be processed by makeindex or xindy.
Sets up all glossaries so that they can be displayed with
Defines a new entry that represents an abbreviation. This internally uses
This command is provided by the base glossaries package but is redefined by glossaries-extra to use
Defines a glossary identified by (which can be referenced by the type key when defining an entry). §6; 35
A shortcut that supplies file extensions based on the glossary label:
Defines a new glossary entry with the given label. The second argument is a comma-separated list of glossary entry keys. §2; 11
Defines a new glossary entry with the given label, type set to
When placed at the end of the description, this switches off the post-description punctuation (if it has been enabled). Does nothing outside of the glossary.
Iterates over all glossaries and does
Displays the glossary by inputting a file created by makeindex or xindy. Must be used with
Iterates over all glossaries and does
Displays the glossary by obtaining the indexing information from the aux file and using TeX to sort and collate. Must be used with
Iterates over all glossaries and does
Displays the glossary by iterating over all entries associated with the given glossary (in the order in which they were added to the glossary). The location lists and group headers will only be present if the associated fields have been set (typically by bib2gls).
Used as a cross-reference tag.
Sets the current abbreviation style to for the category identified by . If the optional argument is omitted, abbreviation is assumed. §2; 16
Sets the acronym style. Don’t use with glossaries-extra. §2; 16
Set the current glossary style to . §5; 33
1. Getting Started[link]
\usepackage
, but there are certain packages that must be loaded
before glossaries, if they are required: hyperref,
babel, polyglossia, inputenc and fontenc.
(You don’t have to load these packages, but if you want them, you
must load them before glossaries.)
The above defines a simple term identified by the label “ex”.
When the term is referenced by its label with \documentclass
{article}
\usepackage
{glossaries}
% define a term:
\newglossaryentry
{ex}{name={sample},
description={an example}}
\begin{document}
Here's my \gls
{ex} term.
\end{document}
\gls
, the
provided text (“sample”) is inserted into the document:
This produces:
\documentclass
{article}
\usepackage
{glossaries}
\newglossaryentry
{emptyset}{
name={\ensuremath
{\emptyset
}},
description={the empty set}}
\begin{document}
The empty set is denoted \gls
{emptyset}.
\end{document}
This has used a different command to define the term, but the term is
still referenced with \documentclass
{article}
\usepackage
{glossaries}
\setacronymstyle
{long-short}
\newacronym
{svm}{SVM}{support vector machine}
\begin{document}
First use: \gls
{svm}. Second use: \gls
{svm}.
\end{document}
\gls
in the same way as before. However,
the text produced by \gls
now varies:
changed after the first use. The first use produced the
long form followed by the short form in parentheses because I set
the acronym style to long-short. The subsequent use
just showed the short form.
\gls
{svm}\newglossaryentry
fields, consider adding
\glsnoexpandfields
before you start defining your entries.
Where possible use robust semantic commands.
Since long-short happens to be the default for
\documentclass
{article}
\usepackage
{glossaries-extra}
% commands provided by glossaries-extra:
\setabbreviationstyle
{long-short}
\newabbreviation
{svm}{SVM}{support vector machine}
\begin{document}
First use: \gls
{svm}. Second use: \gls
{svm}.
\end{document}
\newabbreviation
you may omit the \setabbreviationstyle
line in this example.
\newacronym
(rather than
\newabbreviation
) then you need the optional
argument of \setabbreviationstyle
:
In this example, if you omit the \documentclass
{article}
\usepackage
{glossaries-extra}
\setabbreviationstyle
[acronym]{long-short}
\newacronym
{svm}{SVM}{support vector machine}
\begin{document}
First use: \gls
{svm}. Second use: \gls
{svm}.
\end{document}
\setabbreviationstyle
line you
will notice a difference because the short-nolong style (not
the long-short style) is the default with \newacronym
.
With the short-nolong style the first use simply shows just
the short form.
\loadglsentries
with the filename as the argument. For example:
If you find you have a really large number of definitions that are
hard to manage in a tex file, you might want to have a
look at bib2gls (installed separately) which requires
a bib format instead.
\loadglsentries
{defns}
SVM
with
, then
I need to select a style that uses \textsc
{svm}\textsc
, like this (for the
base glossaries style):
The abbreviation styles have a different naming scheme with
glossaries-extra:
\documentclass
{article}
\usepackage
{glossaries}
\setacronymstyle
{long-sc-short}
\newacronym
{svm}{svm}{support vector machine}
\begin{document}
First use: \gls
{svm}. Second use: \gls
{svm}.
\end{document}
With glossaries-extra you can have different abbreviation
styles for different categories. Many of these styles have their
own associated formatting commands that can be redefined
for minor adjustments. See the glossaries-extra manual for
further details or Gallery: Mixing Styles.
\documentclass
{article}
\usepackage
{glossaries-extra}
% commands provided by glossaries-extra:
\setabbreviationstyle
{long-short-sc}
\newabbreviation
{svm}{svm}{support vector machine}
\begin{document}
First use: \gls
{svm}. Second use: \gls
{svm}.
\end{document}
\newglossaryentry
) or as an
abbreviation (\newacronym
or, with glossaries-extra,
\newabbreviation
).
\label
/\ref
or \cite
mechanism). The label may be
the same as the text produced with \gls
(provided it doesn’t
contain any formatting commands) or may be completely different.
\newglossaryentry
{elite}{name={élite},
description={select group}}
\newglossaryentry
{set}{name={set},
description={collection of distinct elements}}
\newglossaryentry
{sym.set}{
name={\ensuremath
{\mathcal
{S}}},
description={a set}}
\newacronym
{tool.cnc}{CNC}{computer numerical control}
\newacronym
{police.cnc}{CNC}{civil nuclear constabulary}
\newacronym
{miltary.cnc}{CNC}{commander in chief}
:
(colon), active for certain languages. This means that the
character behaves like a command which is unsuitable for a label.
However, if babel is loaded with french then the
\documentclass
{article}
\usepackage
{glossaries}
\newglossaryentry
{sym:set}{name={\ensuremath
{\mathcal
{S}}},
description={a set}}
\begin{document}
\gls
{sym:set}
\end{document}
:
(colon) character becomes active.
You may find that the above example seems to work, but a problem
will occur if hyperref and a glossary list are added to the
document as the active character will interfere with the hyperlink
target name.
\documentclass
{article}
\usepackage
[T1]{fontenc}
\usepackage
[french]{babel}
\usepackage
{glossaries}
% the colon : is a normal character here
\newglossaryentry
{sym:set}{
name={\ensuremath
{\mathcal
{S}}},
description={a set}}
\begin{document}
% the colon : is now an active character
\gls
{sym:set}
\end{document}
\gls
in chapter or section headings as it can have
some unpleasant side-effects. Instead use \glsentrytext
for
regular entries and either \glsentryshort
or \glsentrylong
for acronyms. Alternatively use
glossaries-extra which provides special commands for use in
section headings and captions, such as \glsfmttext
and \glsfmtshort
.
However this method doesn’t sort the entries (they’re listed in
order of definition) and it will display all the defined entries,
regardless of whether or not you’ve used them all in the document,
so “turnip” appears in the glossary even though there’s
no \documentclass
{article}
\usepackage
[sort=none]{glossaries-extra}
\newglossaryentry
{potato}{name={potato},
plural={potatoes},
description={starchy tuber}}
\newglossaryentry
{cabbage}{name={cabbage},
description={vegetable with thick green
or purple leaves}}
\newglossaryentry
{turnip}{name={turnip},
description={round pale root vegetable}}
\newglossaryentry
{carrot}{name={carrot},
description={orange root}}
\begin{document}
Chop the \gls
{cabbage}, \glspl
{potato} and
\glspl
{carrot}.
\printunsrtglossaries
% list all entries
\end{document}
(or similar) in the document.
\gls
{turnip}\printunsrtglossaries
) that’s used with bib2gls (Option 4)
but with bib2gls you instead need to use the
record package option (not sort) and one or more instances of
\GlsXtrLoadResources
in the preamble (more on this later).
\makenoidxglossaries
to the preamble (before the entries are
defined) and put \printnoidxglossaries
at the place where
you want your glossary.
For example:
\documentclass
{article}
\usepackage
{glossaries}
\makenoidxglossaries
% use TeX to sort
\newglossaryentry
{potato}{name={potato},
plural={potatoes},
description={starchy tuber}}
\newglossaryentry
{cabbage}{name={cabbage},
description={vegetable with thick green
or purple leaves}}
\newglossaryentry
{turnip}{name={turnip},
description={round pale root vegetable}}
\newglossaryentry
{carrot}{name={carrot},
description={orange root}}
\begin{document}
Chop the \gls
{cabbage}, \glspl
{potato} and
\glspl
{carrot}.
\printnoidxglossaries
\end{document}
)
in the document.
\gls
{turnip}
or you may want to try out a style that shows the group headings:
\usepackage
[nogroupskip]{glossaries}
If you try out this example you may also notice that the description
is followed by a full stop (period) and a number. The number is the
location in the document where the entry was referenced (page 1 in this
case), so you can look up the term in the glossary and be directed to
the relevant pages. It may be that you don’t want this
back-reference, in which case you can suppress it using the
nonumberlist package option:
\usepackage
[style=indexgroup]{glossaries}
If you don’t like the terminating full stop, you can suppress that
with the nopostdot package option:
\usepackage
[nonumberlist]{glossaries}
The glossaries-extra package has this option as the default,
so if you want terminating full stop, you need to explicitly add it
with the postdot option:
\usepackage
[nopostdot]{glossaries}
\usepackage
[postdot]{glossaries-extra}
\glspl
. This displays the plural form. By default, this is just
the singular form with the letter “s” appended, but in the case of
“potato” I had to specify the correct plural using the
plural key.
2. Defining Terms[link]
The is the word, phrase or symbol you are defining,
and is the description to be displayed in the
glossary.
\newglossaryentry
{ }
{
name={,
}description={,
}
}
\longnewglossaryentry
{ }
{
name={,
}
}
{ }
set
:
\newglossaryentry
{set}
{
name={set},
description={a collection of objects}
}
emptyset
:
(This will also need a sort key if you use Options 1 or 3, see
below.)
\newglossaryentry
{emptyset}
{
name={\ensuremath
{\emptyset
}},
description={the empty set}
}
fishage
:
(The percent character discards the end of line character that would
otherwise cause an unwanted space to appear at the start of the
description.)
\longnewglossaryentry
{fishage}
{name={Fish Age}}
{%
A common name for the Devonian geologic period
spanning from the end of the Silurian Period to
the beginning of the Carboniferous Period.
This age was known for its remarkable variety of
fish species.
}
% mfirstuc v2.08+
If you have an older version of mfirstuc then any initial
character that is an extended Latin or non-Latin character must be
grouped in order to work with sentence-casing commands, such as
\newglossaryentry
{élite}
{
name={élite},
description={select group or class}
}
\Gls
. An older version possibly also means there may not be support
for UTF-8 characters in labels either:
% mfirstuc v2.07 or older
Likewise if accent commands are used:
\newglossaryentry
{elite}
{
name={{é}lite},
description={select group or class}
}
\newglossaryentry
{elite}
{
name={{\'
e}lite},
description={select group or class}
}
% Encoding: UTF-8
(The bib format doesn’t allow spaces in labels so you can’t
have @entry
{set,
name={set},
description={a collection of objects}
}
@entry
{emptyset,
name={\ensuremath
{\emptyset
}},
description={the empty set}
}
@entry
{fishage,
name={Fish Age},
description={A common name for the Devonian
geologic period spanning from the end of the
Silurian Period to the beginning of the
Carboniferous Period.
This age was known for its remarkable variety of
fish species.}
}
@entry
{élite,
name={élite},
description={select group or class}
}
fish age
as the label, but you can have
fish-age
.)
This method requires glossaries-extra’s record
package option:
The bib file is specified in the resource command. For
example, if the bib file is called entries.bib
then put the following line in the document preamble:
\usepackage
[record]{glossaries-extra}
You can have a comma-separated list. For example, if you also
have entries defined in the file entries2.bib:
\GlsXtrLoadResources
[src={entries}]
\GlsXtrLoadResources
[src={entries,entries2}]
in
the document, you need to use the text key as well.
\gls
{ }
This will appear in the text as “Latin alphabet” but will be listed in
the glossary as “alphabet, Latin” (and therefore sorted under
“A” not “L”).
With bib2gls this entry is defined in the bib
file as:
\newglossaryentry
{latinalph}
{
name={alphabet, Latin},
text={Latin alphabet},
description={alphabet consisting of the letters
a, \ldots
, z, A, \ldots
, Z}
}
@entry
{latinalph,
name={alphabet, Latin},
text={Latin alphabet},
description={alphabet consisting of the letters
a, \ldots
, z, A, \ldots
, Z}
}
\newglossaryentry
{oesophagus}
{
name={œsophagus},
plural={œsophagi},
description={canal from mouth to stomach}
}
\newglossaryentry
),
is the short form and is the long form.
For example, the
following defines an abbreviation:
This internally uses \newacronym
{svm}{SVM}{support vector machine}
\newglossaryentry
to define an entry with
the label svm
. By default, the name key is set to
(“SVM” in the above example) and the
description key is set to (“support vector
machine” in the above example). If, instead, you want to be able to
specify your own description you can do this using the optional
argument:
\newacronym
[description={statistical pattern recognition
technique}]
{svm}{SVM}{support vector machine}
\textsc
to typeset the acronym in small-caps or that use a footnote on
first use. See the main user guide for further details.
\newacronym
but it’s redefined to
use the new abbreviation interface. The style must now be set using:
The default is abbreviation. If you use
\newacronym
the category is acronym, which is why you
need to use the optional argument if you define abbreviations with
\newacronym
when glossaries-extra has been loaded:
If you use bib2gls then abbreviations are defined in the
bib file in the format:
\setabbreviationstyle
[acronym]{ }
@abbreviation
{ ,
long={,
}short={
}
}
or (with glossaries-extra):
\newacronym
[longplural={diagonal matrices}]
{dm}{DM}{diagonal matrix}
If omitted, the defaults are again obtained by appending an “s” to
the singular versions. (The glossaries-extra package provides
a way of not appending “s” for abbreviation plurals via category
attributes.) With bib2gls, the definition in the
bib file is:
\newabbreviation
% glossaries-extra.sty
[longplural={diagonal matrices}]
{dm}{DM}{diagonal matrix}
@abbreviation
{dm,
short={DM},
long={diagonal matrix},
longplural={diagonal matrices}
}
or with bib2gls the definition in the bib file is:
\newglossaryentry
{emptyset}
{
name={empty set},
symbol={\ensuremath
{\emptyset
}},
description={the set containing no elements}
}
If you want commands such as @entry
{emptyset,
name={empty set},
symbol={\ensuremath
{\emptyset
}},
description={the set containing no elements}
}
\emptyset
in the name field
then you must supply a sort value with Options 1 and 3
otherwise you’ll end up with errors from TeX or xindy. With Option 2
(makeindex) you’re unlikely to get an error, but you may find
the resulting order is a little odd. For example:
This displays the symbol as \(\emptyset \) but sorts according to
“empty set”. You may want to consider using
glossaries-extra’s symbols package option which
provides
This internally uses \newglossaryentry
{emptyset}
{
name={\ensuremath
{\emptyset
}},
sort={empty set},
description={the set containing no elements}
}
\newglossaryentry
but automatically sets
the sort key to the . For example:
Now the sort value is automatically set to the label “emptyset”.
\documentclass
{article}
\usepackage
[symbols]{glossaries-extra}
\makeglossaries
\glsxtrnewsymbol
[description={the set containing no elements}]
{emptyset}% label (and sort value)
{\ensuremath
{\emptyset
}}% symbol
\begin{document}
\gls
{emptyset}
\printglossaries
\end{document}
in which case bib2gls will try to interpret the name
field to determine the sort value. Alternatively you can use:
@entry
{emptyset,
name={\ensuremath
{\emptyset
}},
description={the set containing no elements}
}
which will use the label (@symbol
{emptyset,
name={\ensuremath
{\emptyset
}},
description={the set containing no elements}
}
emptyset
) as the sort value.
(You don’t need the symbols package option in this case,
unless you want a separate symbols list.) The corresponding document
(where the definition is in the file entries.bib) is now:
\documentclass
{article}
\usepackage
[record]{glossaries-extra}
\GlsXtrLoadResources
[src={entries}]
\begin{document}
\gls
{emptyset}
\printunsrtglossaries
\end{document}
\makeglossaries
or \makenoidxglossaries
, the
sort field shouldn’t be used with bib2gls. Instead,
bib2gls has its own algorithm for determining the sort value
based on the entry type (@entry
, @symbol
etc) and
various settings. See
bib2gls gallery: sorting for further
details.
3. Using Entries[link]
will display “Fish
Age” in the text (given the definition from the previous section).
If you are using bib2gls then this will display \gls
{fishage}??
(like
\ref
and \cite
) until bib2gls has created the
relevant files and LaTeX is rerun.
\gls
will create a hyperlink to the
corresponding entry in the glossary. If you want to suppress the
hyperlink for a particular instance, use the starred form
for example, \gls
*
. The other commands described in
this section all have a similar starred form.
\gls
*{fishage}\newacronym
with
glossaries described above) or an abbreviation (using
\newabbreviation
with glossaries-extra), then \gls
will display the full form the first time it’s used (first use) and just the
short form on subsequent use. For example, if the style is
set to long-short, then
will display
“support vector machine (SVM)” the first time it’s used, but the
next occurrence of \gls
{svm}
will just display “SVM”.
(If you use \gls
{svm}\newacronym
with glossaries-extra the default
doesn’t show the long form on first use. You’ll need to change the
style first, as described earlier.)
. For example,
\gls
{ }
displays “sets”.
\glspl
{set}
produces “Sets are collections”.
\Glspl
{set} are collections.
\documentclass
{article}
\usepackage
{glossaries}
\newglossaryentry
{emptyset}
{
name={empty set},
symbol={\ensuremath
{\emptyset
}},
description={the set containing no elements}
}
\begin{document}
The \gls
{emptyset} is denoted \glssymbol
{emptyset}.
\end{document}
4. Displaying a List of Entries[link]
Option 1
Option 2
Option 3
Option 4
Requires glossaries-extra?
✖
✖
✖
✔
Requires an external application?
✖
✔
✔
✔
Requires Perl?
✖
✖
✔
✖
Requires Java?
✖
✖
✖
✔
Can sort extended Latin
or non-Latin alphabets?
✖∗
✖
✔
✔
Efficient sort algorithm?
✖
✔
✔
✔
Can use different sort methods for each glossary?
✔
✖
✖
✔
Any problematic sort values?
✔
✔
✔
✖
Can form ranges in the location lists?
✖
✔
✔
✔
Can have non-standard locations?
✔
✖
✔†
✔
1.Add
Here’s a complete document (myDoc.tex):
\makenoidxglossaries
to your preamble (before you
start defining your entries, as described in
§2).
where you want your list of entries to appear. The sort
may be one of: \printnoidxglossary
[sort=, ]
word
(word ordering),
letter
(letter ordering), case
(case-sensitive
ordering), def
(in order of definition) or
use
(in order of use). Alternatively, use
to display all your glossaries (if you have more than one).
\printnoidxglossaries
\printnoidxglossary
[sort=word]% main glossary
\printnoidxglossary
[
type=symbols,% symbols glossary
sort=use]
Document build:
\documentclass
{article}
\usepackage
{glossaries}
\makenoidxglossaries
% use TeX to sort
\newglossaryentry
{sample}{name={sample},
description={an example}}
\begin{document}
A \gls
{sample}.
% iterate over all indexed entries:
\printnoidxglossaries
\end{document}
pdflatex myDoc
pdflatex myDoc
1.Add
Here’s a complete document (myDoc.tex):
\makeglossaries
to your preamble (before you start
defining your entries).
where you want your list of entries (glossary) to appear. (The
sort key isn’t available in .)
Alternatively, use
\printglossary
[ ]
which will display all glossaries (if you have more than one).
\printglossaries
makeglossaries myDoc
(Replace myDoc with the base name of your LaTeX document file without the extension.) If you don’t have Perl installed
use makeglossaries-lite instead:
makeglossaries-lite myDoc
\makeglossaries
the LaTeX command which should be typed in the document
preamble. These are two different concepts that happen to have
similar looking names.
\usepackage
[automake]{glossaries}
\usepackage
[order=letter]{glossaries}
Document build:
\documentclass
{article}
\usepackage
{glossaries}
\makeglossaries
% create makeindex files
\newglossaryentry
{sample}{name={sample},
description={an example}}
\begin{document}
A \gls
{sample}.
% input files created by makeindex:
\printglossaries
\end{document}
pdflatex myDoc
makeglossaries myDoc
pdflatex myDoc
or
pdflatex myDoc
makeglossaries-lite myDoc
pdflatex myDoc
1.Add the xindy option to the glossaries
package option list:
Here’s a complete document (myDoc.tex):
If you aren’t using a Latin script, you may need to suppress the
default number group:
\usepackage
[xindy]{glossaries}
\usepackage
[xindy={glsnumbers=false}]{glossaries}
\makeglossaries
to your preamble (before you start
defining your entries).
where you want your list of entries (glossary) to appear. (The
sort key isn’t available in .)
Alternatively, use
\printglossary
[ ]
\printglossaries
makeglossaries myDoc
(Replace myDoc with the base name of your LaTeX document file without the tex extension.)
If you don’t know how to use the command prompt, then as mentioned above, you may
be able to configure your text editor to add
makeglossaries as a build tool. Note that the automake option
won’t work in TeX’s restricted mode, as xindy isn’t on the
list of trusted applications.
\usepackage
[xindy,order=letter]{glossaries}
Document build:
\documentclass
{article}
\usepackage
[xindy]{glossaries}
\makeglossaries
% create xindy files
\newglossaryentry
{sample}{name={sample},
description={an example}}
\begin{document}
A \gls
{sample}.
\printglossaries
% input files created by xindy
\end{document}
pdflatex myDoc
makeglossaries myDoc
pdflatex myDoc
\P
or
\ensuremath{\pi}
) you must add the
sort key. This is also advisable for the other options
(except Option 4, which, in general, shouldn’t
have the sort field set), but is essential for Option 3. For example:
\newglossaryentry
{P}{name={\P
},sort={P},
description={paragraph symbol}}
\printunsrtglossary
to display each glossary (or
\printunsrtglossaries
to display them all).
1.Add the record option to the glossaries-extra
package option list:
Here’s a complete document (myDoc.tex) with only one
resource set for brevity:
\usepackage
[record]{glossaries-extra}
to your preamble where is the
list of bib files containing the entries. You may
use different sort methods for each resource set. For example:
\GlsXtrLoadResources
[src={, } ]
The last resource set assumes that the entries defined in the
file constants.bib have a number stored in the user1
field. For example:
\usepackage
[record,% using bib2gls
abbreviations,% create abbreviations list
symbols,% create symbols list
numbers% create numbers list
]{glossaries-extra}
\GlsXtrLoadResources
[
src={terms},% entries in terms.bib
% put these entries in the 'main' list:
type=main,
% sort according to this locale:
sort=de-CH-1996
]
\GlsXtrLoadResources
[
src={abbrvs},% entries in abbrvs.bib
% put these entries in the 'abbreviations' list:
type={abbreviations},
% case-sensitive letter (non-locale) sort:
sort=letter-case
]
\GlsXtrLoadResources
[
src={syms},% entries in syms.bib
% put these entries in the 'symbols' list:
type=symbols,
% sort according to first use in the document:
sort=use
]
\GlsXtrLoadResources
[
src={constants},% entries in constants.bib
% put these entries in the 'numbers' list:
type=numbers,
% sort according to the user1 field:
sort-field=user1,
sort=double% double-precision numeric sort
]
@number
{pi,
name={\ensuremath
{\pi
}},
description={pi},
user1={3.141592654}
}
where you want your list of entries (glossary) to appear. (The
sort key isn’t available in . The
sort setting needs to be
used in \printunsrtglossary
[type=, ]
\GlsXtrLoadResources
instead.)
Alternatively, use
which will display all glossaries (if you have more than one).
\printunsrtglossaries
pdflatex myDoc
bib2gls myDoc
or (if you need letter groups)
bib2gls --group myDoc
The accompanying entries.bib file:
\documentclass
{article}
\usepackage
[record]{glossaries-extra}
% input the glstex file created by bib2gls:
\GlsXtrLoadResources
[% instructions to bib2gls:
src={entries}, % data in entries.bib
sort=en-GB% sort according to this locale
]
\begin{document}
A \gls
{sample}.
% iterate over all defined entries:
\printunsrtglossaries
\end{document}
Document build:
@entry
{sample,
name={sample},
description={an example}
}
pdflatex myDoc
bib2gls myDoc
pdflatex myDoc
% arara: pdflatex
% arara: makeglossaries
% arara: pdflatex
then to build the document you just need the single system call:
\documentclass
{article}
\usepackage
{glossaries}
\makeglossaries
arara myDoc
Alternatively, if you want to use makeglossaries-lite, change
the second line to:
% arara: makeglossarieslite
There’s also a rule for bib2gls. For example, the following
indicates that letter groups are required:
% arara: pdflatex
% arara: bib2gls: { group: on }
% arara: pdflatex
\documentclass
{article}
\usepackage
[record]{glossaries-extra}
\GlsXtrLoadResources
5. Customising the Glossary[link]
\item
which means that it will typically be
displayed in bold. You can switch to medium weight by redefining
\glsnamefont
:
Some classes and packages redefine the description environment
in such as way that’s incompatible with the glossaries
package. In which case you’ll need to select a different glossary
style (see below).
\renewcommand
*{\glsnamefont
}[1]{\textmd
{#1}}
or to add it with glossaries-extra:
\usepackage
[nopostdot]{glossaries}
\usepackage
[postdot]{glossaries-extra}
\printunsrtglossary
is used without bib2gls). This refers
to the document locations (for example, the page number) where the
entry has been referenced. If you use Options 2 or 3 described in
§4 or Option 4 (with bib2gls and
glossaries-extra) then location ranges will be compressed.
For example, if an entry was used on pages 1, 2 and 3, then with
Options 2, 3 or 4 the location list will appear as 1–3, but
with Option 1 it
will appear as 1, 2, 3. If you don’t want the locations displayed
you can hide them using the nonumberlist package option:
or with bib2gls use save-locations=false in the
optional argument of the appropriate \usepackage
[nonumberlist]{glossaries}
\GlsXtrLoadResources
(it’s possible to have some resource sets with locations and some
without).
\usepackage
[nogroupskip]{glossaries}
You can also use the style package option for the preloaded
styles. For example:
\setglossarystyle
{index}
\usepackage
[style=index]{glossaries}
or
\usepackage
[nopostdot]{glossaries}
\usepackage
{glossary-mcols}
\setglossarystyle
{mcolindex}
\usepackage
[stylemods=mcols,style=mcolindex]{glossaries-extra}
or
\usepackage
[nopostdot]{glossaries}
\setglossarystyle
{altlist}
\usepackage
[stylemods,style=altlist]{glossaries-extra}
or one of the “tree” styles:
\usepackage
[nopostdot,nonumberlist,
style=long4col]{glossaries}
\usepackage
[nopostdot,nonumberlist,style=tree]{glossaries}
Define the acronyms with a description:
\setacronymstyle
{long-short-desc}
Alternatively with glossaries-extra:
\newacronym
[description={statistical pattern
recognition technique}]
{svm}{SVM}{support vector machine}
\setabbreviationstyle
{long-short-desc}
\newabbreviation
[description={statistical pattern
recognition technique}]
{svm}{SVM}{support vector machine}
\setglossarystyle
{altlist}
6. Multiple Glossaries[link]
main
glossary. When you define an entry (using one of the commands
described in §2), that entry is automatically
assigned to the default glossary, unless you indicate otherwise
using the type key. However you first need to
make sure the desired glossary has been defined. This is done using:
\printglossary
, \printnoidxglossary
or
\printunsrtglossary
. The other arguments
indicate the file extensions used by
makeindex or xindy (described in
§4). If you’re not using either
makeindex or xindy,
then the , and arguments aren’t
relevant, in which case you may prefer to use the starred version
where those arguments are omitted:
\makeglossaries
. (Entry definitions
should come after \makeglossaries
.) In the case of
Option 4, all new glossaries must be defined before any
\GlsXtrLoadResources
that requires them.
The option also changes the behaviour of \newglossary
[alg]{acronym}{acr}{acn}{\acronymname
}
\newacronym
so that acronyms
are automatically put in the list of acronyms instead of the main
glossary. The glossaries-extra package also supports the
acronyms option for abbreviations defined using \newacronym
but
additionally has the package option abbreviations to create
a list of abbreviations for \newabbreviation
.
\newglossaryentry
with the
name set to and the description is
suppressed.
After \usepackage
[acronyms]{glossaries}
\newglossary
[nlg]{notation}{not}{ntn}{Notation}
\makeglossaries
(or \makenoidxglossaries
) you can
define the entries in the preamble. For example:
or if you don’t like using \newglossaryentry
{gls:set}
{% This entry goes in the `main' glossary
name={set},
description={A collection of distinct objects}
}
% This entry goes in the `acronym' glossary:
\newacronym
{svm}{svm}{support vector machine}
\newglossaryentry
{not:set}
{% This entry goes in the `notation' glossary:
type={notation},
name={\ensuremath
{\mathcal
{S}}},
description={A set},
sort={S}}
\ensuremath
:
\newglossaryentry
{not:set}
{% This entry goes in the `notation' glossary:
type={notation},
name={$\mathcal
{S}$},
text={\mathcal
{S}},
description={A set},
sort={S}
}
(Option 1) or
\printnoidxglossary
[type=]
(Options 2 and 3). Where is the glossary label. If the
type is omitted the default \printglossary
[type=]
main
glossary is assumed.
With this method you don’t use \printunsrtglossary
[type=]
\makeglossaries
or
\makenoidxglossaries
. Instead you can assign the entry type
with the resource command. For example:
Later in the document:
\usepackage
[record,abbreviations,symbols]{glossaries-extra}
\GlsXtrLoadResources
[
src={terms}, % entries defined in terms.bib
type=main% put in main glossary
]
\GlsXtrLoadResources
[
src={abbrvs}, % entries defined in abbrvs.bib
type=abbreviations% put in abbreviations glossary
]
\GlsXtrLoadResources
[
src={syms}, % entries defined in syms.bib
type=symbols% put in symbols glossary
]
\printunsrtglossary
% main
\printunsrtglossary
[type=abbreviations]
\printunsrtglossary
[type=symbols]
\newglossary
specify the file extensions to use instead of
gls and glo. The optional argument is the
file extension for the transcript file. This should be different for
each glossary in case you need to check for
makeindex/xindy errors or warnings if things go
wrong.
main
, acronym
and notation
),
specified using:
Then (assuming your LaTeX document is in a file called
myDoc.tex):
\usepackage
[acronyms]{glossaries}
\newglossary
[nlg]{notation}{not}{ntn}{Notation}
Option 2:
Either use one makeglossaries or
makeglossaries-lite call:
makeglossaries myDoc
or
makeglossaries-lite myDoc
Or you need to run makeindex three times:
makeindex -t myDoc.glg -s myDoc.ist -o myDoc.gls myDoc.glo
makeindex -t myDoc.alg -s myDoc.ist -o myDoc.acr myDoc.acn
makeindex -t myDoc.nlg -s myDoc.ist -o myDoc.not myDoc.ntn
makeglossaries myDoc
Or you need to run xindy three times (be careful not to insert
line breaks where the line has wrapped.)
xindy -L english -C utf8 -I xindy -M myDoc -t myDoc.glg -o myDoc.gls myDoc.glo
xindy -L english -C utf8 -I xindy -M myDoc -t myDoc.alg -o myDoc.acr myDoc.acn
xindy -L english -C utf8 -I xindy -M myDoc -t myDoc.nlg -o myDoc.not myDoc.ntn
pdflatex myDoc
bib2gls --group myDoc
pdflatex myDoc
(Omit --group if you don’t need letter groups.)
7. Hyperlinks (glossaries and hyperref)[link]
\usepackage
[colorlinks]{hyperref}
\usepackage
{glossaries}
\gls
will form a hyperlink to the relevant entry in the
glossary. If you want to disable this for all your
glossaries, then use:
acronym
and
notation
glossaries but you do want them for entries in the
main
glossary, then do:
\usepackage
[colorlinks]{hyperref}
\usepackage
[acronym,nohypertypes={acronym,notation}]{glossaries}
\newglossary
[nlg]{notation}{not}{ntn}{Notation}
The glossaries-extra extension package provides another method
using category attributes. See the glossaries-extra user
manual for further details.
\usepackage
[colorlinks]{hyperref}
\usepackage
[hyperfirst=false]{glossaries}
\gls
, \glspl
, \Gls
and \Glspl
. The hyperref
package provides a way of specifying alternative text for the PDF
bookmarks via \texorpdfstring
. For example:
However, it’s not a good idea to use commands like \section
{The \texorpdfstring
{\gls
{fishage}}{Fish Age}}
\gls
in
a section heading as you’ll end up with the table of contents page in
your location list and it will unset the first use flag too soon.
Instead you can use
This is expandable provided that the text key doesn’t
contain non-expandable code. For example, the following works:
and it doesn’t put the table of contents in the location list.
\section
{The \glsentrytext
{fishage}}
\section
{The \glsfmttext
{fishage}}
8. Cross-References[link]
The cross-reference will appear as “see Devonian”. You can
change the “see” tag for an individual entry using the format
see={[. For example:
] }\longnewglossaryentry
{devonian}{name={Devonian}}%
{%
The geologic period spanning from the end of the
Silurian Period to the beginning of the
Carboniferous Period.
This age was known for its remarkable variety of
fish species.
}
\newglossaryentry
{fishage}
{
name={Fish Age},
description={Common name for the Devonian period},
see={devonian}
}
In the above, I haven’t enclosed the entire value of the
see key in braces.
If you use the see key in an optional argument, such as
the optional argument of \newglossaryentry
{latinalph}
{
name={Latin alphabet},
description={alphabet consisting of the letters
a, \ldots
, z, A, \ldots
, Z},
see=[see also]{exlatinalph}
}
\newglossaryentry
{exlatinalph}
{
name={extended Latin alphabet},
description={The Latin alphabet
extended to include other letters such as
ligatures or diacritics.}
}
\newacronym
, make sure you enclose the
value (including the optional tag) in braces. For example:
The glossaries-extra package provides a seealso
key. This doesn’t allow a tag but behaves much like
see={[\newacronym
{ksvm}{ksvm}{kernel support vector machine}
\newacronym
[see={[see also]{ksvm}}]
{svm}{svm}{support vector machine}
\seealsoname
]{ }}. For example:
Additionally, the glossaries-extra package provides
an alias key where the value must be just a single label.
See glossaries-extra gallery: aliases for an example.
\newabbreviation
{ksvm}{ksvm}
{kernel support vector machine}
\newabbreviation
[seealso={ksvm}]
{svm}{svm}{support vector machine}
\usepackage
[record,abbreviations,symbols]{glossaries-extra}
\GlsXtrLoadResources
[
src={terms}, % entries defined in terms.bib
type=main% put in main glossary
]
\GlsXtrLoadResources
[
src={abbrvs}, % entries defined in abbrvs.bib
type=abbreviations,% put in abbreviations glossary
% no number list for these entries:
save-locations=false
]
\GlsXtrLoadResources
[
src={syms}, % entries defined in syms.bib
type=symbols% put in symbols glossary
]
9. Further Information[link]
The Dickimaw Books Gallery provides additional example documents.
Symbols[link]
Glossary[link]
\gls
-like commands (which can adjust their behaviour according to whether or not this flag is true). The conditional is true if the entry hasn’t been used by one of these commands (or if the flag has been reset) and false if it has been used (or if the flag has been unset).\printglossary
or \printunsrtglossary
(which may or may not be ordered alphabetically) or a glossary is a set of entry labels where the set is identified by the glossary label or type.\Gls
-like\gls
that change the first use flag. These commands index the entry (if indexing is enabled), create a hyperlink to the entry’s glossary listing (if enabled) and unset the first use flag.\gls
that have the potential to be a hyperlink.\textit{Clostridium}
, is syntactic markup. Whereas defining a command called, say, \bacteria
that displays its argument in italics is a semantic command. The actual styling is hidden and the command relates specifically to a particular concept. Syntactic:
The end result is the same: \textit
{Clostridium}
\newrobustcmd
*{\bacteria
}[1]{\emph
{#1}}%
Semantic: \bacteria
{Clostridium} \newrobustcmd
to make the semantic command robust as the style commands can cause a problem if they expand too soon. Alternatively, use \NewDocumentCommand
.Command Summary[link]
A[link]
acronym
glossary.
G[link]
\gls
but converts the first character of the link text to uppercase (for the start of a sentence) using \makefirstuc
. §3; 20
\Gls
but uses the plural form. §3; 20
\gls
but uses the plural form. §3; 20
symbols
, the category set to symbol
, the name set to and the sort set to . The optional argument is a comma-separated list of glossary entry keys, which can be used to override the defaults. §2; 18
L[link]
\glsdefaulttype
to and inputs . If the optional argument is omitted, the default glossary is assumed. Note that if any entries within have the type key set (including implicitly in commands like \newacronym
), then this will override the type given in the optional argument.
M[link]
texdoc mfirstuc
or visit ctan.org/pkg/mfirstuc.
\printnoidxglossary
.
N[link]
\newglossaryentry
and any provided (glossary entry keys) will be appended. The category is set to abbreviation by default, but may be overridden in . The appropriate style should be set before the abbreviation is defined with \setabbreviationstyle
. §2; 16
\newabbreviation
with the category key set to acronym. With just the base glossaries package, use \setacronymstyle
to set the style. With glossaries-extra, use
to set the style that governs \setabbreviationstyle
[acronym]{ }\newacronym
. §2; 15
§6; 35
\newglossary
[ -glg]{ }{ -gls}{ -glo}{ }index
, the name set to and the description set to \nopostdesc
. The optional argument is a comma-separated list of glossary entry keys, which can be used to override the defaults. §6; 36
P[link]
for each glossary. §6; 38
\printglossary
[type=]\makeglossaries
and either makeindex or xindy.
for each glossary. §6; 38
\printnoidxglossary
[type=]\makenoidxglossaries
. This method can be very slow and has limitations.
for each glossary. §6; 38
\printunsrtglossary
[type=]S[link]
Index[link]
Symbols[link]
A[link]
\setacronymstyle
B[link]
C[link]
D[link]
F[link]
G[link]
H[link]
I[link]
L[link]
M[link]
N[link]
O[link]
P[link]
R[link]
S[link]
T[link]
U[link]
X[link]