简体   繁体   English

引文在输入时未定义,即使它们存在

[英]Citation undefined on input even though they exist

Hi I'm using Overleaf for my dissertation and this warning started popping up recently: Citation 'objprogen' on page 1 undefined on input line 8.嗨,我在论文中使用 Overleaf,最近开始弹出此警告:第 1 页的引文 'objprogen' 在输入第 8 行未定义。

This citation is already created as seen below in the 'sources.bib' file:该引文已经在“sources.bib”文件中创建,如下所示:

@article{objprogen,
  author={Guo, Wenzhong and Lin, Renjie and Wang, Shiping and Xiong, Neal},
  booktitle={2018 9th International Symposium on Parallel Architectures, Algorithms and 
  Programming (PAAP)}, 
  title={Object Proposal Generation for Unsupervised Object Localization}, 
  year={2018},
  volume={},
  number={},
  pages={235-242},
  doi={10.1109/PAAP.2018.00046}}

This is my main.tex file:这是我的 main.tex 文件:

\documentclass[a4paper]{article}
\usepackage{blindtext, graphicx}
\usepackage{csquotes}
\usepackage[hidelinks]{hyperref}
\usepackage{url}
\usepackage[style=authoryear-ibid,backend=biber]{biblatex}
\hyphenation{op-tical net-works semi-conduc-tor}
\bibliography{sources.bib}

\begin{document}

\title{Can image recognition systems be successfully integrated with existing VIN databases 
irrespective of the vehicle manufacturer}
\author{myname}


\maketitle{}

\input{includes/01-Abstract}
\input{includes/02-Introduction}
\input{includes/03-Literature}
\input{includes/04-Methodology}
\input{includes/05-Findings}
\input{includes/06-Conclusion}
\input{includes/07-Appendix}

\end{document}

I had the same problem and solved it by adding \bibliographystyle{plain} (of course you could in principle use other styles).我有同样的问题,并通过添加\bibliographystyle{plain}解决了它(当然你原则上可以使用其他样式)。 For me the structure of the tex file is the following对我来说,tex文件的结构如下

\documentclass[oneside, a4paper, onecolumn, 11pt]{article}
%%some packages%%
\begin{document}
%%% some stuff

\bibliographystyle{plain}
\bibliography{bibfile} %bibfile name without the .bib extension

\end{document}

So contrary to you the \bibliography is also inside the document environment.因此,与您相反, \bibliography也在文档环境中。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM