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
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
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}
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