在 Texmaker 中使用 bibtex 编译时出现未知错误

在 Texmaker 中使用 bibtex 编译时出现未知错误

我试图将我的参考书目从 bibtex 移动到 biblatex,这是我的 MWE:

\documentclass[11pt]{book}
\usepackage[nomarginpar, margin = 2.5cm]{geometry}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[spanish,mexico]{babel}
\usepackage[
backend=biber,
style=authortitle,   
natbib=false,    
backref=true,   
url=false,       
isbn=false,      
doi=false
]{biblatex}
\addbibresource[datatype=bibtex]{bibliografia.bib}
\usepackage{lmodern}
\usepackage{ragged2e}

\begin{document}
La teoría sociocultural subraya la importancia del discurso como un instrumento del pensamiento para la construcción del conocimiento y el desarrollo de habilidades que tiene lugar entre expertos y novatos, así como entre pares, y en distintos escenarios educativos \cite{Mercer95; Mercer2000} por lo cual, el aprendizaje es considerado  una transformación constante de las
prácticas sociales en las que los individuos participan, y con las que se apropian de específicos artefactos culturales o formas de ser;  irreducibles a las propiedades de los individuos. Postula así que el desarrollo intelectual es alcanzado a través del diálogo y que la educación se promulga a través de las interacciones comunicativas reflejando el desarrollo histórico, valores
culturales y prácticas sociales de sociedades y comunidades educativas.

\printbibliography
\end{document}

这是我的文件的一部分*.bib

@book{Mercer2007,
    Address = {London},
    Author = {Neil Mercer, Karen Littleton},
    Date-Added = {2014-09-30 01:18:42 +0000},
    Date-Modified = {2014-09-30 01:22:27 +0000},
    Publisher = {Routledge},
    Title = {Dialogue and the development of children´s thinking: A sociocultural approach.},
    Year = {2007}}

@book{Mercer2000,
    Address = {Espa{\~n}a},
    Date-Added = {2014-09-30 01:15:50 +0000},
    Date-Modified = {2014-09-30 01:21:32 +0000},
    Publisher = {Paid{\'o}s},
    Title = {Palabras y mentes: C{\'o}mo usamos el lenguaje para pensar juntos},
    Year = {2000}}

@book{Mercer95,
    Date-Added = {2014-09-30 01:15:50 +0000},
    Date-Modified = {2014-09-30 01:21:10 +0000},
    Publisher = {Clevedon: Multilingual Matters},
    Title = {The Guided Construction of knowledge: talk amongst teachers and learnerse. },
    Year = {1995}}

当我编译 Bibtex 时出现以下错误消息:

Process started

This is BibTeX, Version 0.99d (TeX Live 2014) The top-level auxiliary file: prueba 3.aux A level-1 auxiliary file: introduccion.aux A level-1 auxiliary file: Perspectiva.aux A level-1 auxiliary file: facilitacion.aux A level-1 auxiliary file: Metodologia.aux A level-1 auxiliary file: habilidades.aux A level-1 auxiliary file: Actividades.aux A level-1 auxiliary file: Descripcion.aux I found no \citation commands---while reading file prueba 3.aux I found no \bibdata command---while reading file prueba 3.aux I found no \bibstyle command---while reading file prueba 3.aux (There were 3 error messages)

Process exited with error(s)

我该如何使用 biblatex 来获取 APA 格式的参考文献?

相关内容