微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

插入 main.tex 时,Bibtex 未显示在 Latex Doc 中

如何解决插入 main.tex 时,Bibtex 未显示在 Latex Doc 中

我正在尝试在我的乳胶文档 (references.tex) 中包含以下内容

@INPROCEEDINGS{inception,author={C. {Szegedy} and {Wei Liu} and {Yangqing Jia} and P. {Sermanet} and S. {Reed} and D. {Anguelov} and D. {Erhan} and V. {Vanhoucke} and A. {rabinovich}},booktitle={2015 IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},title={Going deeper with convolutions},year={2015},volume={},number={},pages={1-9},keywords={convolution;decision making;feature extraction;Hebbian learning;image classification;neural net architecture;resource allocation;convolutional neural network architecture;resource utilization;architectural decision;Hebbian principle;object classification;object detection;Computer architecture;Convolutional codes;Sparse matrices;Neural networks;Visualization;Object detection;Computer vision},doi={10.1109/CVPR.2015.7298594},ISSN={1063-6919},month=Jun,address={Boston,MA}
}

@InProceedings{vgg,author       = "Karen Simonyan and Andrew Zisserman",title        = "Very Deep Convolutional Networks for Large-Scale Image Recognition",booktitle    = "International Conference on Learning Representations",year         = "2015",month        = May,address      = {San Diego,CA}
}

@inproceedings{dean2012large,title={Large scale distributed deep networks},author={Dean,Jeffrey and Corrado,Greg and Monga,Rajat and Chen,Kai and Devin,Matthieu and Mao,Mark and Senior,Andrew and Tucker,Paul and Yang,Ke and Le,Quoc V},booktitle={Advances in neural information processing systems},pages={1223--1231},month = dec,year={2012},address = {Lake Tahoe,NV}
}

但是,当我将其包含在我的乳胶文档中时,它没有显示,您知道这里出了什么问题吗?

\documentclass[12pt,twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{biblatex}
\usepackage{acronym}
\addbibresource{references.bib}
\usepackage{titlesec}
\usepackage{lipsum}
\titleformat{\chapter}[display]
  {\normalfont\bfseries}{}{0pt}{\Large}
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm,bindingoffset=6mm]{geometry}
\usepackage{fancyhdr}
\graphicspath{{images/}}
\pagestyle{fancy}
\fancyhead{}
\fancyhead[RO,LE]{Scaling A Neural Network Based Flower Counting Application}
\renewcommand{\headrulewidth}{0.4pt}

\begin{document}

\input{cover}
\pagenumbering{roman}
\chapter*{Permission To Use}
\addcontentsline{toc}{chapter}{Permissions To Use}
\input{sections/permissions}
    
\chapter*{Abstract}
\addcontentsline{toc}{chapter}{Abstract}
\input{sections/abstract}

\chapter*{AckNowledgements}
\addcontentsline{toc}{chapter}{AckNowledgements}
\input{sections/ackNowledgements}

\newgeometry{top=0mm,bottom=25mm}
\tableofcontents
\addcontentsline{toc}{chapter}{Contents}

\listoftables
\addcontentsline{toc}{chapter}{List of Tables}

\listoffigures
\addcontentsline{toc}{chapter}{List of figures}

\newgeometry{top=25mm,bottom=25mm}

\addcontentsline{toc}{chapter}{List of Abbreviations}
\include{sections/abbreviations} 

\chapter{Introduction}
\pagenumbering{arabic}
\input{sections/introduction}

\chapter{Section Two Title}
\input{sections/section/section-2}

\chapter{Section Three Title}
\input{sections/section/section-3}

\chapter{Section Four Title}
\input{sections/section/section-4}

\chapter{Section Five Title}
\input{sections/section/section-5}

\chapter{Conclusion}
\input{sections/conclusion}

\appendix
\chapter{Appendix Title}
\input{sections/appendix}

\printbibliography

\end{document}

解决方法

永远不要忽略错误消息。看看右上角的小红色矩形,这会告诉您问题出在哪里。

多个问题:

  • 您不得在普通文本模式下使用 ^ 之类的数学命令

    \acro{P$^2$IRC}{Plant Phenotyping and Imaging Research Center}
    
  • 命令 \ection 没有定义,我猜你的意思是 \section? (有几次)

  • 您必须从您的 \cite{...} 文件中.bib 至少一个条目

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其他元素将获得点击?
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。)
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbcDriver发生异常。为什么?
这是用Java进行XML解析的最佳库。
Java的PriorityQueue的内置迭代器不会以任何特定顺序遍历数据结构。为什么?
如何在Java中聆听按键时移动图像。
Java“Program to an interface”。这是什么意思?