Given a figure and a section i need the figures in that section to be labeled in a section.counter manner. Example First figure, section 3. should be Figure 3.1
I can only use \documentclass{article}
\documentclass[12pt]{article}
\usepackage{graphicx}
\usepackage{pdflscape}
\usepackage{caption}
\usepackage[paper=A4,pagesize]{typearea}
\usepackage[driver=pdftex, margin=2.54cm]{geometry}
%Preamble
\begin{document}
\date{}
\bibliography{Biblio}
\bibliographystyle{harvard}
\author{Aiden Strydom\\201103578}
\title{Artificial Intelligence\\Deliverable One: Agent Design}
%New page
\maketitle
\tableofcontents
\newpage
\section{Background}
\section{Section 1}
\section{Section 2}
\section{Section 3}
\begin{figure}[ht]
\centering
\resizebox{0.8\hsize}{!}{\includegraphics[angle=90,origin=c] {AeroponicsUCDportrait.pdf}}
%\caption{Figure 3.1 Aeroponics \textit{Use Cases}}
\caption[(3.1)]{A figure without list entry.}
\end{figure}
\end{document}

articleclass does not havechapters. – Sigur Mar 23 '14 at 20:36