I am using latex with neovim and vimtex. In the past, I've printed a bibliography successfully, albeit only a test version so to speak. Now I have a "major" bibfile with around 30 entries. In addition I've installed the 'unified style sheet for linguistics' and put it in my preamble. I've tried some things but I get the said 'error'.
any help appreciated
the bib file is here: https://justpaste.it/1wnye the log file is here: https://justpaste.it/6wbh2
the tex file:
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage{comment}
\usepackage{hyperref}
\usepackage[
backend=biber,
style=unified,
]{biblatex}
\addbibresource{identity.bib}
\title{Bibliographie zu Identität und Gender im Rahmen der Diskurslinguistik}
\author{x}
\date{ }
\begin{document}
\maketitle
\printbibliography
\end{document}
\nocite{*}inside thedocumentenvironment ... or cite one by one the "keys" of your entries in text (via command\cite{<KeyHere>}). In other case it will not find entries to add in the references section. Welcome to TeX.SX! – koleygr Jul 20 '22 at 18:11.blg) – David Carlisle Jul 20 '22 at 18:21it was the \nocite{*} really.
happy now ...
– hal3m Jul 20 '22 at 18:30