General ⇒ Problem with the list of abbreviations and symbols
Problem with the list of abbreviations and symbols
I'm writing my masters thesis, for which I am using a template assigned by my faculty. With it, I had encountered a problem with the list of abbreviations and symbols. In the template, the title and both lists are shown on the same page, but it mine, there is an extra empty page between each of them. See figures below:
Template: My file: Since I'm usgin the template latex code to create my document, I can't figure out where this difference comes from. I attach below the part of the code where this list of abbreviations and symbls is created.
\cleardoublepage\phantomsection
\chapter*{List of abbreviations and symbols}
\renewcommand\listtablename{List of abbreviations and symbols}
\addcontentsline{toc}{chapter}{\listtablename}
\printacronyms[include=abbrev, name=Abbreviations]
\printacronyms[include=nomencl, name=Symbols]
All the acronyms are defined like:
\DeclareAcronym{QBO}{
short = QBO,
long = Quasi-Biennial Oscillation,
tag = abbrev
}
What can I do, to remove the empty pages between the title and the lists?
I thank you in advance for your help in solving this problem!
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Problem with the list of abbreviations and symbols
\DeclareAcronym
command is provided by the 
\acsetup
command in the preamble for all acronym lists or as an optional argument to a \printacronyms
command.