
LaTeX에서 참고문헌 목록에 bibtex를 사용하고 있습니다. URL을 사용하고 싶고 인용해야 합니다. .bib 파일에 URL을 추가하려면 어떻게 해야 합니까? 또한 나는 참고문헌 스타일로 시카고를 사용하고 있다. 다음 코드를 작성했지만 내 참조에는 표시되지 않습니다. 어떻게 해결할 수 있나요?
\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}
답변1
댓글이 너무 길어서 마크업이 필요함
다음 코드( 로 저장됨 myfile.tex
)를 다음과 같이 컴파일합니다.
pdflatex myfile
bibtex myfile
pdflatex myfile
pdflatex myfile
내용 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}