I have been using LaTeX the last few months to write my thesis and have solved most issues, however, there is one thing still bugging me - the spacing between the title of my glossaries 'Acronym List' and the start of the list. The spacing here is much larger than the equivalent spacing in my ToC, LoF or LoT, etc.
I am using an adaptation of the Thesis Class specific to my university, but that does not specifically implement anything to do with an abbreviations list so I don't think my issue arises there. But it does contain my style:
Code: Select all
\LoadClass[12pt,a4paper]{book}
Anyway, here is the code specific to my Acronym list, any help would be greatly appreciated.
Code: Select all
\documentclass[12pt]{thesistemplate}
\usepackage{lipsum}
\usepackage{hyperref}
\usepackage{fancyhdr} %not used on Acronym's page, but just including anyway
\usepackage{setspace}
\usepackage{tocloft}
\renewcommand{\cftchapleader}{\cftdotfill{\cftsecdotsep}}
\usepackage[style=long,nonumberlist,acronym,toc]{glossaries}%style=long,toc
%creates empty title
\renewcommand*{\glspostdescription}{}
\renewcommand{\glossarysection}[2][]{}
\makeglossaries
%The next section outputs my list in the style I wanted
\renewcommand{\glsgroupskip}{}{}
\renewcommand{\glsnamefont}[1]{\textbf{\bfseries #1}}
\setlength{\LTleft}{0pt}
\setlength{\LTright}{\fill}
\newacronym{ct}{CT}{Computed Tomography}
\newglossaryentry{..}{type=\acronymtype, name={..}, description={.....}, first={....., ..}}
etc.
\begin{document}
%creates Acronym list with title 'List of Abbreviations' on page immediately following the last list%
\makeatletter\@openrightfalse\prefacesection{List of Abbreviations}
\pagestyle{plain}
\glossaryheader
\printglossaries
\@openrighttrue\makeatother
\chapter{some chapter}
\lipsum \gls{ct} \lipsum \gls{ct} \lipsum
\end{document}
Nicola