提问于:
浏览数:
3980
## 编译环境
操作系统
* [x ]` Windows 7/8/10
* [ ] macOS
* [ ] Linux
`若需勾选,请把[ ]改成[x]`
Tex发行版
* [ ] TexLive `年份`
* [ ] MikTeX `版本号`
* [ ] CTeX
`若需勾选,请把[ ]改成[x]`
## 我的问题
使用biblatex,TeXstudio也修改 选项编译器为`biber`,但生成bbl文件总为空。代码如下:
```markdown
\documentclass[12pt]{article}
\usepackage[style=numeric,backend=biber,sorting=none]{biblatex}
\addbibresource{MyRef.bib}
\begin{document}
this is a reference. \cite{LIU20133291}
\nocite{*}
\printbibliography[title=Reference]
\end{document}
```
'''MyRef'''文件如下:
```markdown
@article{LIU20133291,
title={Chaos, Making a New Science},
author={Gleick, James and Hilborn, Robert C},
journal={American Journal of Physics},
volume={56},
number={11},
pages={1053--1054},
year={1988}}
```