I need to change the custom format of bibliography citations to fulfil the requirements of a Conference. In this case, I am using an article document with unsrt bibliography style. The citations should have the aspect in the caption below (superscript citations between parenthesis):

Besides that, I need the bibliography to be in the format you can see below:

I have tried the solution proposed in this post but it does not work for article document type. I have tried the code below, but parenthesis are not introduced. Moreover, I do not know how to change the format of the bibliography to adjust it to the requirements.
\documentclass[a4paper,12pt,oneside]{article}
\usepackage[superscript]{cite}
\renewcommand\citeleft{(}
\renewcommand\citeright{)}
\begin{document}
The reference point\cite{Camci2009} in the text\cite{Ben-Daya2009} should be formatted thus\cite{Berdinyazov2009}.
\bibliographystyle{unsrt}
\bibliography{mybib}
\end{document}
natbibwith the optionsuperandroundinstead ofcite. i.e.,\usepacakge[round,super]{natbib}and replaceunsetwithunsrtnat. – Guido Mar 20 '14 at 08:59