I have used the basic commands of the package Glossary (link below), but the glossary itself does not print when using the command \printglossaries. https://www.overleaf.com/learn/latex/Glossaries
Using the Latex code found in the link above, I cannot print the glossary either. My LaTex installation should miss a package, but after verification, they are all installed. Would anyone have an idea of what is wrong here?
\documentclass{report}
\usepackage[style=authoryear,citestyle=authoryear,natbib=true,backend=bibtex]{biblatex}
\title{}
\author{}
\date{}
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{float}
\usepackage{amsmath}
\usepackage[super]{nth}
\usepackage[utf8]{inputenc}
\usepackage{glossaries}
\makeglossaries
\newglossaryentry{latex}
{
name=latex,
description={Is a markup language specially suited for scientific documents.}
}
\begin{document}
\maketitle
\tableofcontents
\chapter{Chapter 1}
\section{Text}
Lorem ipsum.
\section{Glossary}
\printglossaries
\end{document}