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:
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...............
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...............