BibTeX, biblatex and biberBiber 1.5 + BibLaTeX 2.5

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
kotrfa
Posts: 1
Joined: Tue Mar 26, 2013 12:35 am

Biber 1.5 + BibLaTeX 2.5

Post by kotrfa »

Hi.
I'm using Ubuntu 12.10 and I have problem with these two. I used biber 0.9.9 and biblatex 1.7-1 from oficially repositories (biblatex from texlive) and everything worked fine. But I tried to upgrade biber to 1.5 and biblatex to 2.5 (manually). It went well, but now I'm getting weird error, when I try to compile using biber.

My document:

Code: Select all

\documentclass[a4paper,12pt,titlepage]{article} 

\usepackage[english,czech]{babel} 
\usepackage[T1] {fontenc} 
\usepackage[utf8]{inputenc} 
\usepackage{csquotes}


\usepackage[
   backend=biber      
  ,style=iso-numeric  
  ,babel=other        
  ,sortlocale=cs_CZ   
  ,bibencoding=UTF8   
  ,block=space
]{biblatex}

\addbibresource{reference.bib} 

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\begin{document}
!This is great guide about \cite{hmfbugo} biber and bibliography for everyone \cite{zimvzni}by Daniel Hnyk!{Britnell24022012}

%%%%%%%Bibliography%%%%%%%%%
\nocite{*}
\printbibliography[title={References},heading={bibnumbered}] 

\end{document}
This is biber output:

Code: Select all

>>> biber biberguide.bcf 
INFO - This is Biber 1.5
INFO - Logfile is 'biberguide.blg'
INFO - Reading 'biberguide.bcf'
WARN - Warning: Found biblatex control file version 1.7, expected version 2.3
INFO - Using all citekeys in bib section 0
INFO - Processing section 0
INFO - Looking for bibtex format file 'reference.bib' for section 0
INFO - Decoding LaTeX character macros into UTF-8
INFO - Found BibTeX data source 'reference.bib'
WARN - Labelname candidate 'shortauthor' is not a name field - skipping
WARN - Labelname candidate 'author' is not a name field - skipping
WARN - Labelname candidate 'shorteditor' is not a name field - skipping
WARN - Labelname candidate 'editor' is not a name field - skipping
WARN - Labelname candidate 'translator' is not a name field - skipping
WARN - Labelname candidate 'shortauthor' is not a name field - skipping
WARN - Labelname candidate 'author' is not a name field - skipping
WARN - Labelname candidate 'shorteditor' is not a name field - skipping
WARN - Labelname candidate 'editor' is not a name field - skipping
WARN - Labelname candidate 'translator' is not a name field - skipping
WARN - Labelname candidate 'shortauthor' is not a name field - skipping
WARN - Labelname candidate 'author' is not a name field - skipping
WARN - Labelname candidate 'shorteditor' is not a name field - skipping
WARN - Labelname candidate 'editor' is not a name field - skipping
WARN - Labelname candidate 'translator' is not a name field - skipping
WARN - Labelname candidate 'shortauthor' is not a name field - skipping
WARN - Labelname candidate 'author' is not a name field - skipping
WARN - Labelname candidate 'shorteditor' is not a name field - skipping
WARN - Labelname candidate 'editor' is not a name field - skipping
WARN - Labelname candidate 'translator' is not a name field - skipping
WARN - Labelname candidate 'shortauthor' is not a name field - skipping
WARN - Labelname candidate 'author' is not a name field - skipping
WARN - Labelname candidate 'shorteditor' is not a name field - skipping
WARN - Labelname candidate 'editor' is not a name field - skipping
WARN - Labelname candidate 'translator' is not a name field - skipping
Use of uninitialized value $llabel in concatenation (.) or string at Biber.pm line 1897.
Use of uninitialized value $llabel in concatenation (.) or string at Biber.pm line 1911.
Use of uninitialized value $llabel in concatenation (.) or string at Biber.pm line 1926.
Use of uninitialized value $llabel in concatenation (.) or string at Biber.pm line 2735.
INFO - Overriding locale 'cs_CZ' default tailoring 'variable = shifted' with 'variable = non-ignorable'
Use of uninitialized value $llabel in concatenation (.) or string at Biber.pm line 2866.
INFO - Sorting 'entry' list '' keys
Use of uninitialized value $llabel in concatenation (.) or string at Biber.pm line 1933.
INFO - Writing 'biberguide.bbl' with encoding 'UTF-8'
Use of uninitialized value in string eq at Biber/Output/bbl.pm line 477.
Use of uninitialized value in string eq at Biber/Output/bbl.pm line 477.
Use of uninitialized value in string eq at Biber/SortLists.pm line 77.
Use of uninitialized value $label in string eq at Biber/SortLists.pm line 77.
Use of uninitialized value $listlabel in concatenation (.) or string at Biber/Output/bbl.pm line 491.
Use of uninitialized value $listlabel in concatenation (.) or string at Biber/Output/bbl.pm line 493.
INFO - Output to biberguide.bbl
INFO - WARNINGS: 26
Any ideas? Thanks

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

Post Reply