Is it possible to use unsrt style for bibtex that will show arxiv links? I remember using apsrev4-1 for one seminar before and that showed arxiv links, even combined them with hyperref so you could easily click on them in pdf. But Now when I use that I get errors (I guess it's because I'm not using revtex as document class).
The issue is that some articles I cited are only on arxiv, not in any journal, and unsrt just lists author, name of the article and the year of publishing. I'd like to also add arxiv link so that it's not empty looking.
EDIT:
I managed the look I want (sort of, I still get semi colon instead of colon, when citing multiple sources), this is the mwe that resembles the most to my original file:
\documentclass[a4paper,12pt,oneside,openright]{book}
\usepackage[utf8x]{inputenc}
\usepackage{ucs}
\usepackage[T1]{fontenc}
\usepackage{tgtermes}
\usepackage[croatian]{babel}
\usepackage[usenames,dvipsnames,svgnames]{xcolor}
\usepackage{natbib}
\setcitestyle{square,numbers,colon}
\usepackage[colorlinks=true, linkcolor=DarkGray, citecolor=DarkGray, urlcolor=DarkGray, plainpages=false, pdfpagelabels, hypertexnames=false, unicode]{hyperref}
\usepackage{setspace}
\onehalfspacing
\hypersetup{linkcolor=DarkGray}
\begin{document}
This is an example \cite{Anninos:2008fx}\cite{Arnowitt:1962hi}\cite{Banados:1992gq,Bardeen:1999px}
And another \cite{Bekenstein73,Cardy1,Cardy2}\cite{lrr-2004-1,de1998lie}
\bibliographystyle{apsrev4-1}
\bibliography{mybib}
\end{document}
The bibliography is badly stretched, and in my original file (which I won't post here since its preamble is massive alone) I get this:

The last reference even goes out of bounds :S
EDIT2:
This did it:
\begingroup
\raggedright
\sloppy
\bibliographystyle{apsrev4-1}
\bibliography{mybib}
\endgroup
apsrevis because I needed to delete all .bbl .aux etc files when compiling. Now I get arxiv links, but my citations are [Surname(Year)] not [Number] type :\ – dingo_d Feb 06 '14 at 15:36