I am citing 2 papers from the same authors. I read that LaTeX puts a dash if the authors are the same. How do I remove that dash and still put in all the authors name like usual?
@article{resnet,
author = "Kaiming He and Xiangyu Zhang and Shaoqing Ren and Jian Sun",
title = "Deep Residual Learning for Image Recognition",
year = "2015",
journal = "ArXiv"
}
@article{heinitialization,
author = "Kaiming He and Xiangyu Zhang and Shaoqing Ren and Jian Sun",
title = "Delving Deep into Rectifiers: Surpassing Human-Level Performance on ImageNet Classification",
year = "2014",
journal = "ArXiv"
}
\clearpage
\section*{References}
\bibliographystyle{IEEEtran}
\bibliography{refs.bib}
i add the function \usepackage[style=ieee,dashed=false]{biblatex} but my references become the refs.bib


\bibliography{...}with\printbibliographyand compile with biber instead of bibtex. – samcarter_is_at_topanswers.xyz Jan 10 '19 at 17:20