Usando URL en un archivo bibtex LaTeX

Usando URL en un archivo bibtex LaTeX

Estoy usando bibtex para mi bibliografía en LaTeX. Me gustaría utilizar URL y necesito citar. ¿Cómo agrego URL al archivo .bib? Además, estoy usando chicago como estilo de bibliografía. Escribí el siguiente código, pero no aparece en mis referencias. ¿Cómo puedo arreglarlo?

 \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}

Respuesta1

Demasiado largo para un comentario y marcado necesario.

Compile el siguiente código (guardado como myfile.tex) con

pdflatex myfile
bibtex myfile
pdflatex myfile
pdflatex myfile

Contenido de myfile.tex:

\documentclass{article}
\usepackage{filecontents}
 \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{natbib}

\usepackage{url}
\begin{document}

 The information is available in \citep{bworld}.

\bibliographystyle{chicago}
\bibliography{mybib1}
\end{document}

ingrese la descripción de la imagen aquí

información relacionada