I'm writing an article that needs to have the titles of the cited articles absent from the reference list.
This is the way in which I would usually print a reference, for example:
Pedro Domingos. A few useful things to know about machine learning. Communications of the ACM, 55(10):78–87, 2012.
But in the article that I'm writing, the title should not be there. So it should be printed as:
Pedro Domingos. Communications of the ACM, 55(10):78–87, 2012.
Clear? So the question now is: how do I obtain that in LaTeX when I use an external .bib file?
My current LaTeX commands are:
\documentclass[paper=a4, fontsize=11pt]{article}....
\bibliographystyle{unsrt}
\bibliography{bibliography_file.bib}
I wanted to try the solution 1 suggested in this forum but I cannot find the plainnt.bst file they're refering to here on Overleaf.
I tried another solution suggested on this forum (2) but they did not work to me unfortunately.
Does anyone have a suggestion? Thanks