I'm struggling to get an output for my bibliography the way I want it.
I'm currently using
\bibliographystyle{unsrt}
however if a single citation has a list of author it places those names in alphabetical order. So this is an example, my code is this
@ARTICLE{oscillation,
author = {S. Goswami ,\textit{et al.}},
title = {"{Global Analysis of Neutrino Oscillation"}},
then my output is
[8] et al. S. Goswami. "Global Analysis of Neutrino Oscillation".
not what i want which would be
[8] S. Goswami, et al. "Global Analysis of Neutrino Oscillation".

andyou mark a second or third autor:first, family and first2,family2are two autors named "first family, first2 family2". What exactly happens depends from the way you call your bibliography. So a MWE would be helpful. – Kurt Feb 4 at 2:01unsrtbibliography style] places those names in alphabetical order" is correct? Separately, I don't understand the need to specify the "et al" truncation (or any other truncation scheme) in theauthorfield. I'd recommend writingauthor = "Srubabati Goswami and Abhijit Bandyopadhyay and Sandhya Choubey"and letting BibTeX and the bibliography style file do the formatting work for you. – Mico Feb 4 at 2:45