BibLateX - 缺少 \begin{document}

BibLateX - 缺少 \begin{document}

我想使用 IEEE 风格的 BibLateX,因为urldate。问题是,我收到错误:

! LaTeX Error: Missing \begin{document}.

我正在使用pdftexbibtex进行编译。

我对 完全陌生biblatex,所以我根据 中的答案编写了此代码这个问题

编辑:

我正在使用 TexMaker - 现在可以biber选择按照这个问题


我的代码

\documentclass{article}

\usepackage[
backend=biber,
style=ieee
]{biblatex}

\addbibresource{paralel_distribution.bib}

\usepackage{hyperref}

\begin{document}
aaaa

aaaaaaaaaaa \cite{blackford1997scalapack}

aaaaaaaaaaa \cite{balay2014petsc}

\printbibliography
\end{document}

我的 .bib 文件

@Article{balay2014petsc,
  Title                    = {PETSc Users Manual Revision 3.5},
  Author                   = {Balay, S and Abhyankar, S and Adams, M and Brown, J and Brune, P and Buschelman, K and Eijkhout, V and Gropp, W and Kaushik, D and Knepley, M and others},
  Year                     = {2014},
  Urldate                  = {13.05.2015},

  Url                      = {http://www.mcs.anl.gov/petsc/petsc-current/docs/manual.pdf}
}

@Techreport{petsc-user-ref,
  Title                    = {{PETS}c Users Manual},
  Author                   = {Satish Balay and Shrirang Abhyankar and Mark~F. Adams and Jed Brown and Peter Brune and Kris Buschelman and Victor Eijkhout and William~D. Gropp
 and Dinesh Kaushik and Matthew~G. Knepley
 and Lois Curfman McInnes and Karl Rupp and Barry~F. Smith
 and Hong Zhang},
  Institution              = {Argonne National Laboratory},
  Year                     = {2014},
  Number                   = {ANL-95/11 - Revision 3.5},
  Url                      = {http://www.mcs.anl.gov/petsc},
  Urldate                  = {12.05.2015}
}

@Book{blackford1997scalapack,
  Title                    = {ScaLAPACK users' guide},
  Author                   = {Blackford, L Susan and Choi, Jaeyoung and Cleary, Andy and D'Azevedo, Eduardo and Demmel, James and Dhillon, Inderjit and Dongarra, Jack and Hammarling, Sven and Henry, Greg and Petitet, Antoine and others},
  Publisher                = {siam},
  Year                     = {1997},
  Urldate                  = {13.05.2015},
  Volume                   = {4},

  Url                      = {http://www.netlib.org/scalapack/slug/}
}

相关内容