Is it possible to remove the hyperlink from the table number (or the figure number) in the list of tables (or list of figures) in a way similar to that for chapters, sections and subsections using the etoc package?
For example,
\usepackage{etoc}
\makeatletter
\let\latchapter\l@chapter
\etocsetstyle{chapter}{}{}{\latchapter{\numberline{\etocthenumber}\etocname}{\etocpage}}{}
\makeatother
produces the following for the Introduction chapter:
such that the hyperlink has been removed from the number "1" on the left-hand side, which is what I want.
However, the list of Figures still has the hyperlink on the number:
So, how can I remove the hyperlink from "1.1"?
[EDIT] Here is a minimal working example:
\documentclass{book}
\usepackage{xcolor}
\usepackage[colorlinks=true, linkcolor=purple]{hyperref}
\usepackage{etoc}
\makeatletter
\let\latchapter\l@chapter
\etocsetstyle{chapter}{}{}
{\latchapter{\numberline{\etocthenumber}\etocname}{\etocpage}}{}
\makeatother
\begin{document}
\tableofcontents
\listoffigures
\chapter{Introduction}
\begin{figure}
\caption[Arp~220 SED]{}
\end{figure}
\end{document}


\makeatletterto\makeatotherthe ToC sets with a hyperlink covering the entire1 Introduction. – Werner Feb 21 '18 at 23:50\documentclassand end with\end{document}and allow the community to copy-and-paste-and-compile your code and see exactly what you're seeing. – Werner Feb 22 '18 at 00:301.1beforeArp 220 SEDin theList of Figures, which I want to remove, please. Thanks for any help. – ajrlewis Feb 22 '18 at 11:52