
Ich verwende Bibtex für meine Bibliographie in LaTeX. Ich möchte URLs verwenden und muss zitieren. Wie füge ich URLs in die .bib-Datei ein? Außerdem verwende ich Chicago als Bibliographiestil. Ich habe den folgenden Code geschrieben, aber er wird nicht in meinen Referenzen angezeigt. Wie kann ich das beheben?
\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}
Antwort1
Zu lang für einen Kommentar und benötigte Markup
Kompilieren Sie den folgenden Code (gespeichert als myfile.tex
) mit
pdflatex myfile
bibtex myfile
pdflatex myfile
pdflatex myfile
Inhalt von 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}