I have following problem and I can not find a solution for hours. I tried to use bliblatex, but without [backend=bibtex] it does not work and it says:
! Undefined control sequence. <argument> ...docsvlist \expandafter {\bbl@loaded }\ifboolexpr { not test {\... l.13 \begin{document} The control sequence at the end of the top line of your error message was never \def'ed. If you have misspelled it (e.g., `\hobx'), type `I' and the correct spelling (e.g., `I\hbox'). Otherwise just continue, and I'll forget about whatever was undefined.
I used PDFLaTeX -> BibTex -> PDFLaTeX. BibTex said:
Process started
This is BibTeX, Version 0.99d (MiKTeX 2.9) The top-level auxiliary file: text.aux I found no \citation commands---while reading file text.aux I found no \bibdata command---while reading file text.aux I found no \bibstyle command---while reading file text.aux (There were 3 error messages) Process exited normally
My code:
\documentclass[12pt,a4paper]{scrartcl}
\usepackage[utf8]{inputenc} % UTF8
\usepackage[ngerman]{babel} % Deutsch
\usepackage[T1]{fontenc} % Umlaute für deutsche Sprache erlaubt
\usepackage{times} % biegt die Schriftarten schöner um
\usepackage{csquotes} %benötigt für biblatex
%\usepackage[backend=bibtex]{biblatex}
\usepackage{biblatex}
\addbibresource{bibliography.bib}
\begin{document}
Text
\cite{KU}
\cleardoublepage
\addcontentsline{toc}{section}{Literaturverzeichnis}
\end{document}
My bibliography.bib is:
@book{KU,
author = {Kant, Immanuel},
title = {Werkausgabe},
publisher = {Hg. v. Wilhelm Weischedel. Suhrkamp},
address = {Frankfurt am Main},
year = {1974},
}
I more or less new to LaTeX (and Texmaker), so it is quite possible that I have missed something obvious.
I've read that there could be a problem regarding UTF8 or perhaps the language pack. I even deleted German "ö" and "ä" in the .bib.
Thank you for your help!
– SunnyBastard Aug 01 '16 at 19:46Package biblatex Warning: Data encoding is 'utf8'. (biblatex) Use backend=biber.backend=bibtexthe packagebiblatexwants informations compiled with programbiber. Trypdflatex,biber,pdflatextwice ... Then you have also no problems with the german umlauts,bibercan handle utf-8 encoding,bibtexnot! – Mensch Aug 01 '16 at 20:13Eitherway, thank you a lot!
– SunnyBastard Aug 01 '16 at 21:24timesis deprecated and ought not be used in current documents. – cfr Aug 02 '16 at 22:23