[Tex/LaTex] Print glossaries without title

glossaries

For now I print my glossaries in document using command \printglossaries from glossaries package. Unfortunately the title of glossaries messes up my document formatting in a way that blank page appears before the title.

In documentation I found command \setglossarysection which by using in my document as:

\setglossarysection{subsubsection}

fixes the issue of blank page before the glossaries, but the title still remains.

What are the possibilities of printing glossaries without the title?

Best Answer

The sectioning command is inserted via \glossarysection[toc title]{title}, so just redefine that command to do nothing:

\renewcommand{\glossarysection}[2][]{}

However, it might be better if you provide a minimal working example (MWE) that illustrates the blank page problem, as there might be some other issue involved.

Related Question