Erro ao imprimir bibliografia

Erro ao imprimir bibliografia

Não vejo nenhuma bibliografia impressa no pdf após a compilação. Alguém pode apontar o problema? A seguir está meu código de látex

\documentclass{article}

% Page setup
\usepackage[a4paper, margin=2cm]{geometry}

% Math packages
\usepackage{amsmath}    % Enhanced math functionality
\usepackage{amssymb}    % Additional mathematical symbols
\usepackage{amsfonts}   % Mathematical fonts
\usepackage{mathtools}  % Enhancements to amsmath

% Commutative diagrams
\usepackage{tikz-cd}

% Bibliography
\usepackage[style=authoryear, backend=biber]{biblatex}
\addbibresource{references.bib}  % Specify the bibliography file

% Document starts here
\begin{document}
    
\title{Notes on Lie-Triple systems and Lie-Yamaguti algebras}
\date{}
\maketitle
\vspace{-0.5in}

\begin{abstract}
    This is the abstract.
\end{abstract}
    
\section{Introduction}

\section{Bibliography}
Citations can be managed using \texttt{biblatex}. Here is a sample citation \parencite{author2020}.

% Print the bibliography
\printbibliography

\end{document}

E este é o meu arquivo .bib

@article{author2020,
  author    = {Author, A.},
  title     = {Title of the Article},
  journal   = {Journal Name},
  year      = {2020},
  volume    = {1},
  number    = {2},
  pages     = {123-145},
  doi       = {10.1234/journal.2020.12345},
}

Mensagens de erro:

Após clicar no botão "Build & View" recebi as seguintes mensagens de erro:

Process started: bibtex "notes_LYA".aux

This is BibTeX, Version 0.99d (TeX Live 2022/dev/Debian)
The top-level auxiliary file: notes_LYA.aux
I found no \citation commands---while reading file notes_LYA.aux
I found no \bibdata command---while reading file notes_LYA.aux
I found no \bibstyle command---while reading file notes_LYA.aux
(There were 3 error messages)
Process exited with error(s)


Process started: pdflatex -synctex=1 -interaction=nonstopmode "notes_LYA".tex

Process exited normally

Responder1

Seguir estas etapas me ajudou a resolver o problema:

No TeX Studio, você pode configurar a ferramenta bibliográfica seguindo estas etapas:

Abra o TeX Studio.

  1. Vá para a barra de menu e selecione “Opções” -> “Configurar TeX Studio”.

  2. Na barra lateral esquerda, selecione “Construir”.

  3. No menu suspenso “Ferramenta de bibliografia padrão”, selecione “Biber” em vez de “BibTeX”.

  4. Clique em “OK” para aplicar as alterações.

Depois de fazer essas alterações, você poderá compilar seu documento LaTeX novamente. O TeX Studio agora deve usar o Biber para processamento de bibliografia com o Biblatex.

informação relacionada