BibTeX, biblatex and biberBibLaTeX styles remain undefined

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
DonkeyKong
Posts: 2
Joined: Thu Mar 19, 2015 3:01 am

BibLaTeX styles remain undefined

Post by DonkeyKong »

Hey guys, I just started (trying) to use biblatex, but it won't work. My problem is that every compiling gives me the following error message:
! Package keyval Error: style undefined.
See the keyval package documentation for explanation.
Here is my minimal example:

Code: Select all

\documentclass{article}
\usepackage[backend=bibtex]{biblatex}
\addbibresource[style=numeric]{verzeichnis.bib}
\begin{document}
\cite{TeX-book}
\printbibliography
\end{document}
strange is, that the compiler produces an pdf-file that looks like I want. If I change the style in the \addbibresource-line I get the same error-message.

I'm using TexMaker on Ubuntu 14.04.

Is it possible that there are any packages missing? How can I find out?

Regards

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

BibLaTeX styles remain undefined

Post by Johannes_B »

Hi and welcome,

addbibresource does not get optional arguments. The style is loaded as an option to the package. The biblatex default is style=numeric.

Your bibliography database has a german name, i suggest to read Literaturverzeichnisse mit LaTeX, or the still beta of an update on github.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
DonkeyKong
Posts: 2
Joined: Thu Mar 19, 2015 3:01 am

Re: BibLaTeX styles remain undefined

Post by DonkeyKong »

Thanks a lot Johannes, that was exactly what I was searching for. Now everything works :D
Post Reply