This is post is regarding missing "Reference" heading for bibliography section in the pdf file generated through Latex file typed in texstudio. Following is the screenshot:
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi73YvfBsM54OHTCRoO1N0xUm85rPHkTxPzq3oRIMKKmRzJ8jlxSGoniSjEAu0yX-hR1XzabXFaCS3h0zmhwsQ0XsswmeSVIkdAxTQIGK9MOj_s5F_q-9z2EACziOkH0zRBexo_LahgDg/s320/Capturee.PNG)
Following may be the lines of script in your latex file:
\bibliographystyle{elsarticle-harv}
\bibliography{mycollection}
--------------------------------------------------------------------------------
Solution:
you need to add a small code line before calling the bibliography style, as following
\newcommand{\bibsection}{\section*{\refname}}
it will make the heading working for your pdf file.
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgrHVhpX0h0tLmoX_FBgc7ZkxamPP_I_UyU2uDl2MvAcmSVI9WDv6DP4AYcjYmoU2BbZjOUMWuI70NBDfDyuanaDbHMrYcPNQAIk6XwxEo8xY3YK2Dl04SmijRZSDsrwTNsmmEqGJTuCA/s320/Capturee.PNG)
I hope it will help. Happy Latexing...............
Following may be the lines of script in your latex file:
\bibliographystyle{elsarticle-harv}
\bibliography{mycollection}
--------------------------------------------------------------------------------
Solution:
you need to add a small code line before calling the bibliography style, as following
\newcommand{\bibsection}{\section*{\refname}}
it will make the heading working for your pdf file.
I hope it will help. Happy Latexing...............