我把所有参考文献分成多个 .bib 文件。当我尝试编译我的文档时 - 只使用第一个 bib 文件,其他文件被忽略。这是一个只有两个 bib 文件的基本示例:
\documentclass[]{article}
\title{Agricultural Crop Characterization using Spatio-temporal Scattering Properties of Polarimetric SAR data and a Deep Learning Framework.}
\author{Shauank De}
\date{}
\begin{document}
\maketitle
\input{0_Problem_Statement}
\input{1_introduction}
\input{2_Science}
\input{3_Methodology}
\section{Science Background}
\bibliographystyle{IEEEtran}
\bibliography{References/Proposal_Agri , References/polsar}
\end{document}
它仅从最先列出的 bib 文件中提取信息。我甚至尝试使用 sharelatex - 也得到了相同的结果。
分享latex链接: https://www.sharelatex.com/project/59e1b9dad294f4676c032167
这是我的日志文件:
Process started: bibtex.exe "SD_Agri_2017"
This is BibTeX, Version 0.99d (MiKTeX 2.9)
The top-level auxiliary file: SD_Agri_2017.aux
The style file: IEEEtran.bst
White space in argument---line 11 of file SD_Agri_2017.aux
: \bibdata{References/Proposal_Agri,
: References/polsar}
I'm skipping whatever remains of this command
Database file #1: References/Proposal_Agri.bib
Repeated entry---line 38 of file References/Proposal_Agri.bib
: @article{zhang2009mapping
: ,
I'm skipping whatever remains of this entry
Warning--I didn't find a database entry for "da2008land"
Warning--I didn't find a database entry for "lee2004unsupervised"
-- IEEEtran.bst version 1.14 (2015/08/26) by Michael Shell.
-- http://www.michaelshell.org/tex/ieeetran/bibtex/
-- See the "IEEEtran_bst_HOWTO.pdf" manual for usage information.
Warning--empty journal in wilkinson2006crop
Done.
(There were 2 error messages)
Process exited normally
有人能指出我做错什么吗?
答案1
我发现了错误的根源。命令中不能有空格\bibliography{References/Proposal_Agri , References/polsar}
。
正确的命令是:
\bibliography{References/Proposal_Agri,References/polsar}