I face a problem with table of content , i need it to be in center and without dots. I used the following code.
Code: Select all
\documentclass[10pt,a4paper]{article}
\usepackage[latin1]{inputenc}
\usepackage{amsfonts}
\usepackage{amssymb}
\renewcommand*{\contentsname} {\centering \large TABELE OF CONTENTS} % to change the table of content
\renewcommand{\listfigurename}{\large\centering LIST OF FIGURES}
\usepackage{tocloft} % use for th next command in order to remove dots
\renewcommand{\cftdot}{} % remove dots of table of content
\usepackage{indentfirst} % to make indent from first paragraph
\begin{document}
\tableofcontents
This is the introduction
\end{document}
My regards to you.