How to add Word CHAPTER # for each chapter name in toc (for .sty file)
This code from .sty file
\renewcommand{\@makechapterhead}[1]{{
\setlength{\topmargin}{2in} % really 1.5in, added by bph
% to meet OAP standards
\normalfont\normalsize\bfseries %the size of the font of the headers of the chapter
\begin{center}
\etchapterheadstyle{\@chapapp{ \thechapter}} % CHAPTER 1 or APPENDIX
\etchapterheadstyle{#1} % TITLE OF CHAPTER
\end{center}
\setlength{\topmargin}{1.5in} % back to 1in
}}
\renewcommand{\@makeschapterhead}[1]{{
\setlength{\topmargin}{2in} % really 1.5in, added by bph
% to meet OAP standards
\normalfont\normalsize\bfseries
\begin{center}
\etchapterheadstyle{#1} % TITLE OF CHAPTER
\end{center}
\setlength{\topmargin}{2in} % back to 1in
}}
The TOC shown as follow
How to appear TOC as:
CHAPTER 1 INTRODUCTION
CHAPTER 2 Chapter 2 name
CHAPTER 3 Chapter 3 name
After I add the below code from Peter Wilson
this toc appears
The Question is
1- How can I remove the word CHAPTER at the beginning of chapters toc
2- How can I make the title font smaller
3- list of figure - tables - symbols appear at the same page how can I make each of them in a single page?

\chapterin ToC – Werner Mar 01 '19 at 16:41tocbibindpackage – Werner Mar 01 '19 at 22:07