% This file is embedded in glossaries-extra-manual.pdf % Example 158 Using bib2gls: one resource set but four lists % Label: "ex:bib2gls1set4lists" % arara: pdflatex % arara: bib2gls % arara: pdflatex % arara: bib2gls % arara: pdflatex % arara: pdfcrop \documentclass[11pt]{article} \pagestyle{empty} \begin{filecontents*}{terms.bib} @entry{bird, name={bird}, description={feathered animal}, seealso={duck,goose} } @entry{duck, name={duck}, description={a waterbird with short legs} } @entry{goose, name = "goose", plural = "geese", description={a waterbird with a long neck} } @index{example} \end{filecontents*} \begin{filecontents*}{abbrvs.bib} @string{ssi={server-side includes}} @string{html={hypertext markup language}} @abbreviation{shtml, short="shtml", fulllong = ssi # " enabled " # html, nestedlong = "\glsps{ssi} enabled \glsps{html}", description={a combination of \gls{html} and \gls{ssi}} } @abbreviation{html, short ="html", long = html, description={a markup language for creating web pages} } @abbreviation{ssi, short="ssi", long = ssi, description={a simple interpreted server-side scripting language} } @abbreviation{xml, short={xml}, long={extensible markup language}, description={a simple text-base format for representing structured information} } @abbreviation{mathml, short={m\BibGlsNoCaseChange{ath}ml}, long={mathematical markup language}, description={an \gls{xml}-based language for describing mathematical notation} } \end{filecontents*} \begin{filecontents*}{symbols.bib} @preamble{"\providecommand{\mtx}[1]{\boldsymbol{#1}}"} @symbol{M, name={\ensuremath{\mtx{M}}}, description={a matrix} } @symbol{v, name={\ensuremath{\vec{v}}}, description={a vector} } @symbol{S, name={\ensuremath{\mathcal{S}}}, description={a set} } \end{filecontents*} \usepackage[T1]{fontenc} \usepackage[colorlinks]{hyperref} \usepackage[record,nostyles,stylemods={topic,tree,bookindex},style=tree, abbreviations,symbols,index]{glossaries-extra} \renewcommand{\glstarget}{\glsxtrtarget} \setabbreviationstyle{long-short-sc-desc} \GlsXtrLoadResources[src={terms,abbrvs,symbols}, assign-fields = { type = "symbols" [ entrytype->actual = "symbol" ], type = "index" [ entrytype->actual = "index" ] }, sort={en-GB}, symbol-sort-fallback=name, abbreviation-sort-fallback=long, field-aliases={fulllong=long}, copy-to-glossary={"index"}, description-case-change=firstuc, post-description-dot=all ] \newcommand{\primaryfmt}[1]{\hyperbf{#1}} \begin{document} \gls{bird} \gls{example}. \gls{shtml} \gls{M} \newpage \renewcommand*{\glsextrapostnamehook}[1]{\glsadd[format=primaryfmt]{#1}}% \printunsrtglossary*[nonumberlist] {\glssetcategoryattribute{general}{glossname}{firstuc}} \printunsrtabbreviations[nonumberlist,style=topic] \printunsrtsymbols[nonumberlist] \renewcommand*{\glsextrapostnamehook}[1]{}% \printunsrtindex[style=bookindex] \end{document}