I am using the acronym package in my thesis and creating a table of acronyms in the process. Throughout the thesis the acronyms are hyperlinked back to the table.
However, I don't want acronyms in sections titles to be linked as well because this creates a weird link within the ToC and also within page headers.
Can I redefine the hyperref macro for the \chapter, \section, \subsection environments so that it won't link them?
And how? (This answer has it document wide for the \ac* commands)
MWE
\documentclass{book}
\usepackage{acronym}
\usepackage{hyperref}
\title {Example Thesis}
\begin{document}
\tableofcontents
\chapter*{Definitions and Abbreviations}
\begin{acronym}
\acro{RF}{Radio Frequency}
\acro{PA}{power amplifier}
\acro{WPAN}{wireless personal area networks}
\end{acronym}
\mainmatter
\chapter{\acs{RF} Communication}
\acf{RF} Communication can be used to transfer information between devices in \ac{WPAN}.
\end{document}




chaptersubsectionenvironment? – EdL Jul 13 '20 at 13:58