I have the following code:
\documentclass[a4paper,12pt,twoside,openright]{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[italian,english]{babel}
\usepackage[lighttt]{lmodern}
\usepackage[a4paper,top=2.50cm,bottom=2.50cm,left=2.50cm,right=2.50cm]{geometry}
\usepackage{amsmath,amssymb,commath}
\usepackage{siunitx}
\usepackage{physics}
\usepackage[pdftex]{color}
\usepackage{xcolor}
\usepackage[sorting=none]{biblatex}
\usepackage[hyperfootnotes=false]{hyperref}
%hypersetup
\hypersetup{
unicode=false, % non-Latin characters in Acrobat’s bookmarks
pdftoolbar=true, % show Acrobat’s toolbar?
pdfmenubar=true, % show Acrobat’s menu?
pdffitwindow=false, % window fit to page when opened
pdfstartview={FitH}, % fits the width of the page to the window
pdftitle={Renormalization in quantum mechanics: two-dimensional delta-interaction as a case study}, % title
pdfauthor={Me}, % author
pdfsubject={Physics}, % subject of the document
pdfcreator={Me}, % creator of the document
pdfproducer={Me}, % producer of the document
pdfkeywords={theorethical physics, quantum mechanics, renormalization, regularization, effective field theory}, % list of keywords
pdfnewwindow=true, % links in new PDF window
colorlinks=true, % false: boxed links; true: colored links
linktoc=page,
linkcolor=blue, % color of internal link
citecolor=green, % color of links to bibliography
filecolor=magenta, % color of file links
urlcolor=red % color of external links
}
\begin{document}
\tableofcontents
\section{Section 1}
Here there's an equation
\begin{equation}\label{eq1}
\boldsymbol{F} = m\boldsymbol{a}
\end{equation}
\section{Meaning of \eqref{eq1}}
Bla bla...
\end{document}
What I'm trying to do is to remove the equation link only in the TOC. Someone can help me?
\section[Meaning of (1)]{Meaning of \eqref{eq1}}(if you don't use it for headers too)? – koleygr Jul 06 '20 at 15:33\makeatletter \section[Meaning of (\protect\ref*{eq1})]{Meaning of \eqref{eq1}} \makeatother– koleygr Jul 06 '20 at 16:33