I would like to adjust the position and size of the Glossaries title (the word 'Glossaries' itself) in my LaTeX document. I would like the word to be smaller and further up the page since there is a lot of whitespace above it at the moment.
I have checked this answer: How to change the style of "Contents" heading? where they fix the problem of centering, not of font-size/vertical position. Also here: Adjusting the left margin of glossaries is for left and right margins and not for the title size and vertical position. This question: Change position of glossary title seems specific to a two-column setup in the glossary, which I don't have.
I have also scanned through the documentation: "The glossaries package: a guide for beginners" but there is no mention of font size/position of the heading.
I searched for modifiers in \printglossary and tried using \printglossary[title={{\Large\glossaryname}}] which appears to work for font size. Is there a way to get finer control on font size than this?
The most important issue to me is the position of the title, and the short guide above doesn't seem to mention that. I know there is a more detailed guide but that is very long and I was hoping to get some advice here first.
Here is my MWE:
\documentclass[11pt]{report}
\usepackage[utf8]{inputenc}
% for glossary
\usepackage[toc,nonumberlist]{glossaries}
\makeglossaries
% margin size
\usepackage[margin=20mm]{geometry}
%spacing
\usepackage{setspace}
\doublespacing
\title{
{Thesis Title}\
{\large Institution Name}\
}
\author{Author Name}
\date{Day Month Year}
\begin{document}
\maketitle
\newpage
\tableofcontents
\newpage
%%%% Glossary
\newglossaryentry{example}
{
name=example,
description={An \textit{example} is an instance of something of interest, usually used for illustrative purposes.}
}
\newpage
\printglossary[title={{\Large\glossaryname}}]
\newpage
\section{Intro}
Hi. This is an \gls{example}
\end{document}
I compiled using: makeglossaries followed by PDFLaTeX.
If there is anything else I need to add, please let me know. Thank you very much!
