I am using a Ubuntu 12.04 machine in which I have loaded LaTeX (packages from CTAN, not the default ones). I want to bring hyperlinks in the bibliography files. Though my bib file contains all the informations (including the doi and hyperlinks) after compiling they do not appear in the pdf. I believe it is due to some some of my commands in the header files, because when I write a Physical Rev articles using REVTeX, they do appear in the place. For reference, I am giving the necessary parts
\documentclass[12pt]{amsart}
\usepackage{amsmath,amscd,amsfonts,amssymb, color, cite, bbm}
\usepackage{latexsym, graphicx, pstricks,rotating,subfig}
\usepackage[pdftex,bookmarks,colorlinks]{hyperref}
\usepackage[all]{hypcap}
\usepackage[square,sort,comma,numbers]{natbib}
\definecolor{darkblue}{rgb}{0.0,0.0,0.3}
\hypersetup{colorlinks=true,citecolor=darkblue,
unicode=true,pdfauthor=rsg,bookmarks=false}
\newtheorem{prop}{Proposition}
\newtheorem{definition}{Definition}
\newtheorem{rem}{Remark}
\newtheorem{eg}{Example}
\newtheorem{theorem}{Theorem}
\newtheorem{lemma}{Lemma}
\newtheorem{corollary}{Corollary}
\setlength{\oddsidemargin}{0pt}
\setlength{\evensidemargin}{0pt}
\setlength{\textwidth}{6.7in}
\setlength{\topmargin}{-0.5in}
\setlength{\textheight}{9in}
\newtheorem{note}{Note}
and as usual it ends with
\bibliographystyle{h-physrev}
\bibliography{biblio}
I could not find out what mistake I am making. For reference, I have picked up the style file h-physrev. I am not sure where this is a duplicate question. Solutions given in the related questions does not seem to work.
