Thanks to this question I manged to get my unnumbered sections aligned in table of contents, but as I'm using hyperref to highlight pdfborderstyle I get an outline, or highlight, that is not indented. Like this (code below),
is there a way to indent to that the pdfborderstyle get's indented, i.e. stops at the blue line? If that makes sense.
\documentclass{book}
\usepackage{hyperref}
\hypersetup{pdfborderstyle={/S/U/W 1} % thanks, http://tex.stackexchange.com/a/26085/22939
}
\begin{document}
\tableofcontents
\chapter{Introduction}
\chapter*{Main point}
\phantomsection\addcontentsline{toc}{chapter}{\protect\hphantom{\numberline{\thesection}}Main point}
\chapter{Some additional material}
\end{document}


\addcontentsline, or what it is, to the top of the page in the same way that Introduction and Some additional material is anchored? – Eric Fail May 11 '18 at 14:07