Usando URL em um arquivo bibtex LaTeX

Usando URL em um arquivo bibtex LaTeX

Estou usando o bibtex para minha bibliografia em LaTeX. Gostaria de usar URL's e preciso citar. Como adiciono URLs ao arquivo .bib. Além disso, estou usando Chicago como estilo bibliográfico. Eu escrevi o código a seguir, mas ele não aparece em minhas referências. Como posso consertar isso?

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

Responder1

Muito longo para um comentário e marcação necessária

Compile o seguinte código (salvo como myfile.tex) com

pdflatex myfile
bibtex myfile
pdflatex myfile
pdflatex myfile

Conteúdo 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}

insira a descrição da imagem aqui

informação relacionada