Follow the following steps to create bibiliography/references:
- create a file an save as yourReference.BibTex
- copy the following data into the file.
@inproceedings{Jani06, author = "Jani Kurhinen, Vesa A.Korhonen, Miko Vapa, and Matthieu Webber", title = "Modelling Mobile Encounter Networks", booktitle = "In IEEE 17th International Symposium on Personal, Indoor and Mobile Radio Communications", page = "1--4", address = "Helsinki", month = oct, year = 2006}
Then in you main document add the following scripts just before \end{document}:
\bibliographystyle{plain}
\bibliography{yourReference}
To refer the citation in yourReference.bibTex, use the \cite{} command. The full scripts as follows:
-------------------------------------------------------------
% From the previous scripts:
\documentclass[12pt]{article}
\begin{document}
\title{\textbf{Lesson 1 - LATEX}}
\author{\textbf{H. Lenando}}
\date{\textbf{October 2009}}\maketitle
\section{Introduction}
Type you documents here ....! Type you documents here ....! Typeyou documents here ....! \textbf{how to make it bold: highlight thetext, then click the B from the menu bar"}
This is how to refer to the reference: \cite{Jani06}
\begin{itemize}
\item List 1
\item List 2
\end{itemize}
\section{Literature Review}\subsubsection{Java Programming}
\bibliographystyle{plain}
\bibliography{yourReference}
\end{document}