\usepackage[square, numbers, comma, sort&compress]{natbib}
\begin{document}
\label{Bibliography}
\lhead{\emph{Bibliography}}
\bibliographystyle{abbrv}
\bibliography{Bibliography}
\end{document}
在 Bibliography.bib 文件中我已包含此参考文献。
@article{[PK15],
Author = {Philip Koopman},
Volume = {Cornell University, FlexRay Specification Version 2.0, June 2004},
Url = {http://www.ece.cmu.edu/~ece649/lectures/23_flexray.pdf},
Year = {2015}}
在文档的参考书目部分,我得到了这样的
[12] P. Koopman. Cornell University, FlexRay Specification Version 2.0, June 2004, 2015.
我无法完美地引用参考文献。我已遵守命令
PDFLATEX
BIBTEX
PDFLATEX
PDFLATEX
我的文档中的引用是完美的,当我单击它时,就会显示参考书目部分中的相应参考资料。
问题是我无法显示 .bib 文件中的 URL。有人能解释一下问题出在哪里吗?
代码是来自互联网的模板。还有一个类文件,我也查看过它。我没有找到任何与参考书目相关的东西。我正在使用 TEXmaker。
答案1
由于您正在使用natbib
,因此您应该选择abbrvnat
作为样式,它也支持 URL。
\begin{filecontents*}{\jobname.bib}
@article{[PK15],
Author = {Philip Koopman},
Volume = {Cornell University, FlexRay Specification Version 2.0, June 2004},
Url = {http://www.ece.cmu.edu/~ece649/lectures/23_flexray.pdf},
Year = {2015}}
\end{filecontents*}
\documentclass{article}
\usepackage[square, numbers, comma, sort&compress]{natbib}
\usepackage{url}
\begin{document}
\cite{[PK15]}
\bibliographystyle{abbrvnat}
\bibliography{\jobname}
\end{document}
在示例中,我使用filecontents
这个文件只是为了保持其独立。请使用您自己的文件。