TOC의 특정 섹션에서 섹션 번호 매기기 제거

TOC의 특정 섹션에서 섹션 번호 매기기 제거

처음 두 섹션, 즉 승인 및 초록에서만 번호를 제거하고 싶습니다. 나머지 섹션은 번호를 유지해야 합니다.

또한 위의 두 가지(인사 및 초록)가 '콘텐츠'와 동일한 형식, 동일한 정렬 및 굵게 표시되기를 원합니다.

참고로 저는 페이지 번호 매기기가 아니라 섹션 번호 매기기를 언급하고 있습니다. 혹시라도 내가 충분히 명확하지 않은 경우를 대비해. 귀하의 지원에 미리 감사드립니다.

여기 내 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}

관련 정보