I'm using bibtex for my bibliography in LaTeX. I would like to use URL's and I need to cite. How do I add URLs into the .bib file. Also, I am using chicago as a bibliographystyle. I wrote the following code, but It does not show up in my refreneces. How can I fix it?
\begin{filecontents*}{mybib1.bib}
@misc{bworld,
author = {Ingo Lütkebohle},
title = {{BWorld Robot Control Software}},
howpublished = "\url{http://aiweb.techfak.uni-bielefeld.de/content/bworld-
robot-control-software/}",
year = {2008},
}
\end{filecontents*}
\usepackage{url}
\begin{document}
The information is available in \citep{bworld}.
\bibliographystyle{chicago}
\bibliography{mybib1}
\end{document}

\citep{bworld}not\citep{Ingo Lütkebohle}, since the citekey that you've defined isbworld. Does that fix it? – Adam Liter Mar 14 '14 at 03:06\usepackage{natbib}, your MWE compiles just fine for me. – Adam Liter Mar 14 '14 at 03:12latex,bibtex,latex,latexon your document? If you are seeing something like ??, that usually means you have not run the full sequence of commands. (Either that, or you are citing an entrykey that does not exist in your.bibfile, as Adam suggested.) – jon Mar 14 '14 at 03:16BibLaTeXknows about url's for all entry types and has abiblatex-chicagoextension. – Bernard Mar 14 '14 at 03:17natbibor whatever. Why make it difficult for people to help you? Note that complete need not be large. Just enough to show your issue when compiled. But it should compile unless failure to compile is the problem you are asking about! For example, the document class and other packages are clearly relevant here. – cfr Mar 14 '14 at 03:43