Code: Select all
\glossarytitle
It seems I'll need to do the same every time I run makeglossaries though, so this isn't really a permanent solution...
Code: Select all
\glossarytitle
NEW: TikZ book now 40% off at Amazon.com for a short time.
yes, this is far from ideal... I haven't yet found a solution to naming the header of my acronyms yet...Etiene wrote:I've managed to fix the problem by editing the .acr and .gls files to replacewith the desired heading on the first line of each of file.Code: Select all
\glossarytitle
It seems I'll need to do the same every time I run makeglossaries though, so this isn't really a permanent solution...
Code: Select all
\documentclass{book}
\usepackage[toc]{glossaries}
\makeglossaries
\renewcommand{\glossaryname}{List of Acronyms}
\newglossaryentry{sample}{name=sample,description=sample}
\begin{document}
\tableofcontents
\chapter{Sample}
\gls{sample}
\printglossaries
\end{document}
Code: Select all
\documentclass[english]{book}
\usepackage{babel}
\usepackage[toc,translate=false]{glossaries}
\makeglossaries
\addto\captionsenglish{%
\renewcommand{\glossaryname}{List of Acronyms}
}
\newglossaryentry{sample}{name=sample,description=sample}
\begin{document}
\tableofcontents
\chapter{Sample}
\gls{sample}
\printglossaries
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.