I use glossaries to have a List of Acronyms. When the list of acronyms is displayed at the beginning of my document, they take up considerably less space than the page has, leaving a large space at the bottom of each page.
I've checked with other normal pages, or even TOC etc. and the list of acronyms page "ends" way higher..
Here is a MWE (it's a bit big so that you can end up using two pages in the list of Acronyms)
Code: Select all
Code, edit and compile here:
\documentclass[a4paper,oneside,12pt]{book}\pagenumbering{arabic}\usepackage[style=super, nonumberlist, translate=false, toc, numberline]{glossaries}\makeglossaries%Remove the dot at the end of glossary descriptions\renewcommand*{\glspostdescription}{}%Make the description column of the glossary a bit wider%default is 0.6\linewidth\setlength{\glsdescwidth}{0.8\linewidth}%Make the acronym bold in the TOC\renewcommand{\glsnamefont}[1]{\textbf{#1}}\renewcommand{\baselinestretch}{2.0}\begin{document}\clearpage\printglossary\newglossaryentry {DES}{type=\acronymtype, name={DES}, description={Data Encryption Standard}, text={DES}, first={Data Encryption Standard (DES)}}%DHCP\newglossaryentry {DHCP}{type=\acronymtype, name={DHCP}, description={Dynamic Host Configuration Protocol}, text={DHCP}, first={Dynamic Host Configuration Protocol (DHCP)}}%DNS\newglossaryentry {DNS}{type=\acronymtype, name={DNS}, description={Domain Name System}, text={DNS}, first={Domain Name System (DNS)}}%EAP\newglossaryentry {EAP}{type=\acronymtype, name={EAP}, description={Extensible Authentication Protocol}, text={EAP}, first={Extensible Authentication Protocol (EAP)}}%EP\newglossaryentry {EP}{type=\acronymtype, name={EP}, description={Enforcement Point}, text={EP}, first={Enforcement Point (EP)}, plural={EPs}, firstplural={Enforcement Points (EPs)}}%ESP\newglossaryentry {ESP}{type=\acronymtype, name={ESP}, description={Encapsulating Security Payload}, text={ESP}, first={Encapsulating Security Payload (ESP)}}%GSM\newglossaryentry {GSM}{type=\acronymtype, name={GSM}, description={Global System for Mobile Communications}, text={GSM}}%GPS\newglossaryentry {GPS}{type=\acronymtype, name={GPS}, description={Global Positioning System}, text={GPS}, first={Global Positioning System (GPS)}}%GTC\newglossaryentry {GTC}{type=\acronymtype, name={GTC}, description={Generic Token Card}, text={GTC}, first={Generic Token Card (GTC)}}%HSDPA\newglossaryentry {HSDPA}{type=\acronymtype, name={HSDPA}, description={High Speed Downlink Packet Access}, text={HSDPA}, first={High Speed Downlink Packet Access (HSDPA)}}
Thanks