Generalglossaries | Two Titles printed

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
annmucc
Posts: 11
Joined: Mon May 16, 2011 7:33 pm

glossaries | Two Titles printed

Post by annmucc »

PS: I realised that the previous MWE didn't give the problem I was finding, so I have now provided an MWE that does. From what I can understand the problem arises from: \pagestyle{headings}\nouppercaseheads. However, I don't know why and how and what I can do!

Thanks - and apologies for the previous problem
Ann

Hi,

I am using the glossaries package. I have finally got it to work. However, in the glossary section I now have 2 titles: A big one similar to the other chapter titles (which I want), and a smaller one in normal text size just before the glossary list starts. Any help on how to remove this second one?

This is what I am using:

\documentclass[12pt, oneside, a4paper]{memoir}
\pagenumbering{arabic}
\usepackage[acronym,toc,nonumberlist]{glossaries}
\makeglossaries
\begin{document}
\pagestyle{headings}\nouppercaseheads
\normalfont
\printglossaries
\newglossaryentry{culdesac}{name=cul-de-sac,description={passage
or street closed at one end}}
\gls{culdesac}
\end{document}


Thanks!
Last edited by annmucc on Sun Aug 28, 2011 9:44 am, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

nlct
Posts: 276
Joined: Thu Nov 06, 2008 11:15 am

glossaries | Two Titles printed

Post by nlct »

Add the following after you set the headings page style:

Code: Select all

\renewcommand{\glossarymark}[1]{\markboth{#1}{#1}}
Regards
Nicola Talbot
annmucc
Posts: 11
Joined: Mon May 16, 2011 7:33 pm

Re: glossaries | Two Titles printed

Post by annmucc »

That's brilliant - worked like a charm.

Thanks so much for your help Nicola on this and the other post on glossaries...and your discussion on the package was very useful. I couldn't figure it out before I found your instructions.

Thanks again
Ann
Post Reply