[Tex/LaTex] Display urls in the reference section

bibliographiesurls

I want to know how I can display a url to a site as reference in LaTeX. I need to have them at the end so that I can cite them from the other pages.

Best Answer

By reference do you mean citations as in bibliography?

If that is so, you can do it this way.

In the .tex file

\usepackage{url}


\cite{CADIZ}

In the .bib file

@MISC{CADIZ,
 howpublished ="\url{http://www.cs.york.ac.uk/hise/cadiz/home.html}"
}

HTH