提问于:
浏览数:
3559
github上找了一个写毕业论文的模板,用的是Xelatex,但在插入参考文献的时候出现了问题。
BibTeX的代码如下:
```tex
@article{liu2011sift,
title={Sift flow: Dense correspondence across scenes and its applications},
author={Liu, Ce and Yuen, Jenny and Torralba, Antonio},
journal={Pattern Analysis and Machine Intelligence, IEEE Transactions on},
volume={33},
number={5},
pages={978--994},
year={2011},
publisher={IEEE}
}
@inproceedings{tighe2013finding,
title={Finding things: Image parsing with regions and per-exemplar detectors},
author={Tighe, Joseph and Lazebnik, Svetlana},
booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition},
pages={3001--3008},
year={2013}
}
@inproceedings{long2015fully,
title={Fully convolutional networks for semantic segmentation},
author={Long, Jonathan and Shelhamer, Evan and Darrell, Trevor},
booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition},
pages={3431--3440},
year={2015}
}
@inproceedings{chen14semantic,
title={Semantic Image Segmentation with Deep Convolutional Nets and Fully Connected CRFs},
author={Liang-Chieh Chen and George Papandreou and Iasonas Kokkinos and Kevin Murphy and Alan L Yuille},
booktitle={ICLR},
url={http://arxiv.org/abs/1412.7062},
year={2015}
}
@incollection{hariharan2014simultaneous,
title={Simultaneous detection and segmentation},
author={Hariharan, Bharath and Arbel{\'a}ez, Pablo and Girshick, Ross and Malik, Jitendra},
booktitle={Computer vision--ECCV 2014},
pages={297--312},
year={2014},
publisher={Springer}
}
```
然后PDF中显示的参考文献只有'inproceedings'这三个,这是我按照网上找到的XeLaTeX→BibTeX→XeLaTeX→XeLaTeX方式试过了才得到了。如下图所示![](https://pics.latexstudio.net/data/images/202003/23a68e5b3ca9bfc.jpg)
参考文献的XeLaTeX部分代码如下:
```tex
\bibliographystyle{plain}
\addcontentsline{toc}{section}{参考文献}
\zihao{-4}
\bibliography{template}
\pagebreak[4]
```
请问这是为什么?怎么才能解决这个问题?