I'm writing my thesis using overleaf and I would like to add Glossary. I have added the following commands to my preamble.tex
\usepackage[record]{glossaries-extra}
\GlsXtrLoadResources % input file created by bib2gls
[% instructions to bib2gls:
src={entries}, % terms defined in entries.bib
sort={en-GB}% sort according to this locale
]
I have added \printunsrtglossaries just before \end{document} and created entries.bib that contains my list
as instructed by this guide (page 24). I receive the following errors when I copmile my file:

(swipt) is in my list.
Any idea how to deal with this?
Thanks.
MWE:
\documentclass{article}
\usepackage[record]{glossaries-extra}
\GlsXtrLoadResources[
% Dummy file for testing example-glossaries-brief.bib is provided
% with glossaries-extra.sty
src=example-glossaries-brief,
selection=all
]
\begin{document}
\printunsrtglossaries
\end{document}
Document build should be:
pdflatex filename
bib2gls filename
pdflatex filename
glossaries-extraversion 1.07 (2016/08/15) installed. (The log file shows TeX Live 2016/Debian.) At least version 1.08 (2016-12-13) is required for therecordpackage option, althoughbib2glsworks better with newer versions. Obviouslybib2glsalso needs to be installed as well, since it's part of the document build process. The initial release ofbib2glswas 2017-09-09 so it won't be in TeX Live 2016. – Nicola Talbot Dec 13 '18 at 17:50latexmkand there's an example rc file forbib2glson CTAN which you could try uploading to your overleaf project directory. – Nicola Talbot Dec 13 '18 at 19:18bib2glsinstalled on Overleaf? I've tried creating a new simple project with the example latexmk file in my earlier link but there's no indication ofbib2glsrunning. – Nicola Talbot Dec 13 '18 at 19:54.texfile containing\newglossaryentryor\newabbreviationand input them into the document (using\inputor\loadglsentries). The Introductory Guide supplied withbib2glsstarts with some general information that doesn't actually require bib2gls (or any other tool), which might help you get started. – Nicola Talbot Dec 14 '18 at 12:12bib2glsnow? – Pedro May 29 '20 at 17:02latexmkrcfile posted above by Nicola, it looks like it works to me. – anderium Feb 26 '24 at 10:24