我正在尝试在 TeXstudio 中创建参考书目。以下是代码:
\documentclass[12pt,a4paper]{article}
\usepackage{cmap}
\usepackage{mathtext}
\usepackage[T2A]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english,russian]{babel}
\usepackage{indentfirst}
\frenchspacing
\usepackage{authblk}
\usepackage{titling}
\usepackage[backend=biber,bibencoding=utf8,maxcitenames=2,style=authoryear]{biblatex}
\addbibresource{biblio.bib}
\begin{document}
\author{Иванов}
\title{Название \thanks{ссылка на грант}}
\date{}
\maketitle
\renewcommand{\abstractname}{}
\begin{abstract}
\label{firstpage}
\noindent \textbf{Аннотация:} Text of the abstract in Russian.\par
\vspace{10pt}
\noindent \textbf{Ключевые слова:} list of keywords in Russian.
\end{abstract}
\section{Первый раздел}
\noindent Гостиная Анны Павловны начала понемногу наполняться. Приехала высшая знать Петербурга, люди самые разнородные по возрастам и характерам, но одинаковые по обществу, в каком все жили; приехала дочь князя Василия, красавица Элен, заехавшая за отцом, чтобы с ним вместе ехать на праздник посланника. Она была в шифре и бальном платье. Приехала и известная, как la femme la plus séduisante de Pétersbourg 1, молодая, маленькая княгиня Болконская, прошлую зиму вышедшая замуж и теперь не выезжавшая в большой свет по причине своей беременности, но ездившая еще на небольшие вечера. Приехал князь Ипполит, сын князя Василия\cite{quiroga2012concept}, с Мортемаром, которого он представил; приехал и аббат Морио и многие другие.\par
\printbibliography
\end{document}
首先,仅仅通过添加\usepackage{biblatex}
条目(没有其他与参考书目相关的条目,即\addbibresource
和\printbibliography
)就会发生错误Extra \endgroup. \begin{document}
。编译上述代码时,TeXstudio 拒绝打印参考书目。日志中还有许多其他错误和警告,我甚至不知道其中哪些对我在这个问题中提及很重要,所以我将列出所有这些:
line 21: Use of \sortlist doesn't match its definition. \sortlist{
line 21: Extra }, or forgotten \endgroup. \sortlist{nyt}
line 22:Undefined control sequence. \entry{yuste2015neuron}{article}{}
line 44: Undefined control sequence. \endentry
line 44: Undefined control sequence. \endentry
line 45: Undefined control sequence. \endsortlist
line 15: Extra \endgroup. \begin{document}
: 'babel/polyglossia' detected but 'csquotes' missing.
line 33: Citation 'quiroga2012concept' on page 2 undefined
line 36: Empty bibliography
: There were undefined references.
: Please (re)run Biber on the file:(biblatex) testdocument(biblatex) and rerun LaTeX afterwards.
我在文件中注意到的另一个奇怪的条目.bbl
是:
{Missing 'biblatex' package}
{The bibliography requires the 'biblatex' package.}
另外,当我在文件上运行 Biber.exe 时,.bib
会出现警告:
WARN - Warning: Found biblatex control file version 3.0, expected version 2.9
添加.bib 文件:
@article{quiroga2012concept,
title={Concept cells: the building blocks of declarative memory functions},
author={Quiroga, Rodrigo Quian},
journal={Nature Reviews Neuroscience},
volume={13},
number={8},
pages={587--597},
year={2012},
publisher={Nature Publishing Group}
}
@article{reverberi2012deduction,
title={Deduction without awareness},
author={Reverberi, Carlo and Pischedda, Doris and Burigo, Michele and Cherubini, Paolo},
journal={Acta psychologica},
volume={139},
number={1},
pages={244--253},
year={2012},
publisher={Elsevier}
}
@article{yuste2015neuron,
title={From the neuron doctrine to neural networks},
author={Yuste, Rafael},
journal={Nature Reviews Neuroscience},
volume={16},
number={8},
pages={487--497},
year={2015},
publisher={Nature Publishing Group}
}
答案1
我通过下载并安装 Biber 2.4 解决了这个问题。感谢 Bernard 的帮助!