What should I change in order to make my bibliographic references (see latex code bellow), look like the ones attached in the form of image bellow? If you run the code you will see that
- only the first line is aligned correctly from the left, and
- the name of the journal contains lower case characters only whereas what I want is the very first character to be upper case and all the rest lower case as presented in the image bellow.
All suggestions are welcome.

test.tex
\documentclass[12pt,a4paper]{article}
\usepackage[polutonikogreek,english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{natbib}
\bibliographystyle{agsm}
\begin{document}
\citep{Dunham2002}
\bibliography{test.bib}
\end{document}
test.bib
@ARTICLE{Dunham2002,
author = {M.H. Dunham},
title = {\em Data Mining: Introductory and Advanced Topics},
journal = {Prentice Hall},
year = 2002,
}

\emfrom thetitlefield (or enclose the emphasized text with\emph{<emph. text}) --- remember that the bibliographic style file is in charge of styling elements. The first issue is solved with\setlength{\bibhang}{0pt}, check natbib manual, §2.12 – henrique Nov 2 '12 at 4:29@book, and Prentice Hall is thepublisher. Can you please provide a better test case that shows the problem? – mafp Mar 8 at 17:41