I am using the glossaries package. In the document, I would like to say "Please, refer to section \ref{my-glossary}". How can I do that?
Here's an example.
In the file notes.tex
\documentclass[12pt]{article}
\usepackage[section,numberedsection=autolabel]{glossaries}
\makeglossaries
\newacronym{vae}{VAE}{variational auto-encoder}
\begin{document}
%\maketitle
\tableofcontents
\section{Abstract}
\acrshort{vae}.
Please, refer to section \ref{my-glossar}.
\clearpage
\printglossary[type=\acronymtype]\label{my-glossar}
\bibliography{biblio}
\bibliographystyle{plain}
\end{document}

\label{my-glossar}after the corresponding section/chapter? – Dr. Manuel Kuehner May 26 '19 at 17:34\printglossarycommand. – Dr. Manuel Kuehner May 26 '19 at 17:37\namerefand rephrase as "see the section\nameref{...}". (Or something similar with\pageref.) – barbara beeton May 26 '19 at 17:49