I want to add my appendix section to table of contents without page number (but also include dots). I tried any other suggestions in this site but I can't overcome.
Here is my manually created appendix page code
\section*{}
\addcontentsline{toc}{section}{APPENDIX}
\vspace*{2.1cm}
\pagestyle{empty}
\begin{center}
\textbf{{\Large APPENDIX}}
\end{center}
I use this solution but nothing is changed.
Here is my code:
\begin{document}
\begin{center}
\tableofcontents
\end{center}
\newpage
\addcontentsline{toc}{section}{ŞEKİLLER DİZİNİ}
\begin{center}\listoffigures\end{center}
\newpage
\addcontentsline{toc}{section}{ÇİZELGELER DİZİNİ}
\begin{center}\listoftables\end{center}
\newpage
\addcontentsline{toc}{section}{SİMGELER VE KISALTMALAR DİZİNİ}
\begin{center}
\textbf{SİMGELER VE KISALTMALAR DİZİNİ}
\end{center}
end{document}
%Here I want to create appendices page
\newpage
\begin{appendices}
\addtocontents{toc}{\cftpagenumbersoff{section}}
\begin{center}
\section{EKLER}
\end{center}
%\addcontentsline{toc}{section}{EKLER}
\vspace*{2.1cm}
\pagestyle{empty}
%\begin{center}
%\textbf{{\Large EKLER}}
%\end{center}
\vskip 0.5 true in
\textbf{EK-1:} Hesaplamaların Yapıldığı
\textsc{Matlab\textsuperscript{\textregistered}} Kodları
\pagestyle{empty}
\end{appendices}
\section*? You do not need it. And please complete your code example so that it's compilable. – TeXnician Jul 16 '17 at 11:43\documentclassand ending with\end{document}. – Bobyandbob Jul 16 '17 at 11:44