![Настройка оглавления](https://rvso.com/image/353049/%D0%9D%D0%B0%D1%81%D1%82%D1%80%D0%BE%D0%B9%D0%BA%D0%B0%20%D0%BE%D0%B3%D0%BB%D0%B0%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D1%8F.png)
решение1
Все, что я беру из изображения: заголовок по центру, номера глав (если есть) слева, затем заголовки и номера страниц справа.
\documentclass{report}
\usepackage[indentunnumbered]{unnumberedtotoc}%https://en.wikibooks.org/wiki/LaTeX/Document_Structure#Section_numbering
\usepackage{etoolbox}
\tracingpatches
\makeatletter
\patchcmd{\@makechapterhead}{\raggedright}{\centering}{}{}
\patchcmd{\@makeschapterhead}{\raggedright}{\centering}{}{}
\makeatother
\begin{document}
\tableofcontents
\chapter{Wombat}
\addchap{Capybara}
\chapter{An insanely long chapter title that nobody will ever
read entirely Duck}
\end{document}