2 $Section name$
......2.1 $SubSection name$
......2.2 $SubSection name$
3 $Section name$
......3.1 $SubSection name$
etc.
Now I don't have a problem with this but my cranky old english teacher who likes to make life hard for everyone in the class said that I cant have the Section numbers in my table of contents. The subsection numbers need to stay the same but i need to get rid of the section numbering in the TOC. heres the head of my latex document:
Code: Select all
\documentclass[a4paper,11pt,fleqn,leqno]{article}
\usepackage{amsmath}
\usepackage{fancyhdr}
\pagestyle{fancy}
\usepackage{setspace}
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage{indentfirst}
\author{Bryan Bickford}
\title{Chaos Theory}
\doublespacing
\begin{document}
\maketitle
\pagebreak
\tableofcontents
\pagebreak
\section{Overview}
....
\section{Mathematical basis for chaos}
\subsection{Vocabularity}
.....
\subsection{Iterations}
....
\subsection{Bifurcation}
....etc.
-GTO