[Tex/LaTex] Showing URL in bibliography using Overleaf and Mendeley

bibliographies

I'm using Overleaf to write in Latex, I'm also integrated Mendeley to generate bibliograpahy. Here is example web page entry generated by Mendeley.

@misc{DockerReference,
    title = {{Docker Reference}},
    booktitle = {2016},
    url = {https://docs.docker.com}
}

I'm joggling different bibliography stylies because I'm trying to display URL's in bibliography.

\bibliographystyle{unsrt}
\bibliography{Mendeley}

I've no idea how to do that. It's worth to mention that I can't edit bibliography file by my self in overleaf, so I can't change *.bib file.

Best Answer

Style unsrt doesn't support URL fields; try \bibliographystyle{unsrtnat} instead.

You'll also need \usepackage[numbers]{natbib}, and \usepackage{url} or \usepackage{hyperref} for proper handling of special characters (underscores etc) in the URLs.

Related Question