Hello everyone!
I am using the glossaries package to create two different glossaries.
Code: Select all
\newglossary*{Abbs}{List of Abbreviations}
\newglossary*{ICPs}{List of Institutions, Companies \& Policies}
I am trying to display them just like the list of figure or list of tables within the document. So show them in the same style as a chapter and start on the right page. However, I would like them to be displayed in the style of a section in the contents. So exactly as when I use:
Code: Select all
\addcontentsline{toc}{section}{\listfigurename}
\listoffigures
The way I have glossaries in the preambel implemented is the following:
Code: Select all
\usepackage[nogroupskip,
nonumberlist,
toc,
%section=section,
nopostdot]{glossaries}
And then I call the glossaries in the standard way:
When I use "section=section" it shows the two lists correctly in the contents, however, they are not shown properly in the document. When I comment it out, the lists are shown properly in the document but not in the contents.
How can I have the chapter style in the document but the section style in the contents for both glossaries?