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.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p