Удалить нумерацию разделов из определенных разделов в оглавлении

Удалить нумерацию разделов из определенных разделов в оглавлении

Я хочу убрать нумерацию только из первых двух разделов, т.е. Благодарность и Аннотация. Остальные разделы должны сохранить свою нумерацию.

Я также хочу, чтобы два приведенных выше пункта (подтверждение и аннотация) были представлены в том же формате, что и «Содержание», с тем же выравниванием и жирным шрифтом.

Кстати, я имею в виду не нумерацию страниц, а нумерацию разделов. На всякий случай, если я недостаточно ясно выразился. Заранее благодарю за поддержку

Вот мой MWE

\documentclass[12pt,a4paper]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[margin=1in]{geometry}
\usepackage{hyperref} %to put live links to chapters
\usepackage{tocbibind} %add list of figures etc. in TOC


\author{The Author Name}
\title{Examining the effectiveness of teaching of....}

\begin{document}
\pagenumbering{roman}
\maketitle
\tableofcontents

\clearpage


\section{Acknowledgements}
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut 
\section{Abstract}
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
\clearpage
\pagenumbering{arabic}
\chapter{Introduction}
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt 

\section{Background of research}
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt 

\chapter{Purpose of the study}

"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt 
\section{Research Questions}
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut

\end{document}

решение1

Что-то вроде этого?

\section*{Acknowledgements}
\addcontentsline{toc}{section}{Acknowledgements}

Связанный контент