\documentclass[12pt, a4paper, oneside]{article}
\usepackage[utf8]{inputenc}
\usepackage[american]{babel}
\usepackage[backend=biber,style=alphabetic,sorting=ynt]{biblatex}
\addbibresource{Library}
\usepackage{geometry}
\geometry{
left=30mm,
right=20mm,
top=25mm,
bottom=25mm,
bindingoffset=5mm
}
\usepackage{csquotes}
\usepackage{acronym}
\usepackage{graphicx}
\graphicspath{ {./images/} }
Asked
Active
Viewed 70 times
0
daleif
- 54,450
user239870
- 11
JabRefis just a management system forbibfiles but isn't directly related to TeX. Are you runningpdflatex+bibtex+pdflatex+pdflatex? – campa Apr 15 '21 at 08:51biblatex, so you probably should runbiberinstead ofbibtex. – campa Apr 15 '21 at 09:57.bibfile (a wonderful explanation is in https://tex.stackexchange.com/q/63852/35864). A document with bibliography usually needs to be compiled with LaTeX, Biber, LaTeX, LaTeX (where "LaTeX" is your favourite LaTeX flavour: pdfLaTeX, LuaLaTeX, XeLaTeX; it's the same for BibTeX-based bibliographies where you'd run BibTeX instead of Biber). ... – moewe Apr 16 '21 at 06:29biblatex, you may need to tell your editor to run Biber instead: https://tex.stackexchange.com/q/154751/35864. If you have issues with Biber, some first-aid tips are at https://tex.stackexchange.com/q/286706/35864. – moewe Apr 16 '21 at 06:30\addbibresource{Library}would very likely cause an error.\addbibresourcerequires the file name of your.bibfile with file extension. So if the file is calledLibrary.bib, you need\addbibresource{Library.bib}. – moewe Apr 16 '21 at 06:43