I have a small code wherein I am trying to write an article with some references in it, my article is coming nice but the references are not appearing in the generated PDF. How to overcome this.
\documentclass[Review,sagev,times,doublespace]{sagej}
\usepackage{natbib}
\usepackage{moreverb,url}
% math releated packages
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{tabularx}
\usepackage{lineno}
% figure releated packages
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{caption}
\usepackage{subcaption}
%\usepackage[bottom]{footmisc}
%table
\usepackage{scalerel}
\usepackage{adjustbox}
\usepackage{multirow}
\usepackage{url}
% refrence and bibolography
\usepackage[colorlinks,bookmarksopen,bookmarksnumbered,citecolor=red,urlcolor=red]{hyperref}
\usepackage{appendix}
\usepackage{lipsum}
\usepackage{xparse}
\newcommand\BibTeX{{\rmfamily B\kern-.05em \textsc{i\kern-.025em b}\kern-.08em
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\def\volumeyear{2019}
\begin{document}
\section{Introduction}
\lipsum \cite{kukla1991green}
\bibliographystyle{SageH}
%\bibliographystyle{SageV}
\bibliography{refs_conf_1.bib}
\end{document}
\bibliography{<filename of bib file>}is to give<filename of bib file>without the.bibextension. Some systems accept the incorrect input\bibliography{refs_conf_1.bib}and will attempt to find the correct.bibfile (refs_conf_1.bib) but some systems are less benevolent and will try to look forrefs_conf_1.bib.bib. The correct input is\bibliography{refs_conf_1}. – moewe Apr 14 '20 at 06:18sageH.bstavailable online somewhere? – Mico Apr 14 '20 at 06:48\bibliographystyle{unsrt}lists references in the order in which they appear in the document. I don't know the styleSageHorSageV, but since the order is defined by the\bibliographystyle, you should investigate what options are provided by the Sage support. – barbara beeton Apr 14 '20 at 20:11