General ⇒ glossaries | Suppress Output of Glossary Title
glossaries | Suppress Output of Glossary Title
I'm looking for a way to suppress printing the glossary title. I've seen the workaround that changes the glossary section type into the desired one to fit in the right layer of the document hierarchy, but I want to print a glossary as part of a section with some regular text, so suppressing the title is necessary. I've tried setting title empty, but that leaves a big gap that I don't desire.
Any ideas?
Kind regards,
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
glossaries | Suppress Output of Glossary Title
Code: Select all
\documentclass{article}
\begin{document}
Hello, this is a test.
\section*{Hello}
This is the rest of the chapter.
\let\oldsection\section
\renewcommand{\section}[2]{}%
Hello, this is a test.
\section*{Hello}
This is the rest of the chapter.
\let\section\oldsection
Hello, this is a test.
\section*{Hello}
This is the rest of the chapter.
\end{document}
Re: glossaries | Suppress Output of Glossary Title
Thanks for this. Unfortunately, it has not suppressed the title of the glossary.
Regards,
glossaries | Suppress Output of Glossary Title
Code: Select all
\renewcommand{\glossarysection}[2][]{}
Nicola Talbot
Creating a Minimal Example: http://www.dickimaw-books.com/latex/minexample/
Re: glossaries | Suppress Output of Glossary Title
Kind regards,
Yaqub