Desperate and get stuck with a super easy question:
This is my bibtest.tex:
\documentclass{article}
\input{config/config.tex}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{pgfplots}
\usepackage{filecontents}
\usepackage{grffile}
\usepgfplotslibrary{fillbetween}
\usepackage[export]{adjustbox}
\usepackage[utf8]{inputenc} % Required for inputting international characters
\usepackage[T1]{fontenc} % Output font encoding for international characters
\usepackage[style=numeric,backend=biber]{biblatex}
\addbibresource{bib/main.bib}
\usepackage{hyperref}
\hypersetup{colorlinks=true, linkcolor=black,urlcolor=blue}
\usepackage{enumitem}
\begin{document}
\clearpage
As indicated in the famous thesis of Church-Turing Thesis\cite{turing1936computable},
and Minsky's Perceptron article\cite{minsky2017perceptrons}
\printbibliography
\end{document}
This is the main.bib:
@article{turing1936computable,
title={On computable numbers, with an application to the Entscheidungsproblem},
author={Turing, Alan Mathison},
journal={J. of Math},
volume={58},
number={345-363},
pages={5},
year={1936}
}
@book{minsky2017perceptrons,
title={Perceptrons: An introduction to computational geometry},
author={Minsky, Marvin and Papert, Seymour A},
year={2017},
publisher={MIT press}
}
Using MikTeX 2.9, the result is:
As indicated in the famous thesis of Church-Turing Thesis[turing1936computable], and Minsky's Perceptron article[minsky2017perceptrons]
The desired "[1]" and "[2]" did not appear, and no Reference is printed.
Any help is greatly appreciated!
biber bibtest. To setup your editor see here https://tex.stackexchange.com/questions/154751/biblatex-with-biber-configuring-my-editor-to-avoid-undefined-citations – Ulrike Fischer Apr 12 '20 at 17:19