BibTeX, biblatex and bibercan't make the bibliography ...

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
paulosousa
Posts: 90
Joined: Sun Jun 24, 2012 8:48 pm

can't make the bibliography ...

Post by paulosousa »

well I am doing something very very wrong... why am I getting those warnings ?
paulo-sousa-1.png
paulo-sousa-1.png (71.59 KiB) Viewed 6796 times
paulo-sousa-2.png
paulo-sousa-2.png (109.68 KiB) Viewed 6796 times
Last edited by cgnieder on Sun Jun 22, 2014 9:00 pm, edited 1 time in total.

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

can't make the bibliography ...

Post by Johannes_B »

Can you please make the pics a bit smaller?

You aren't doing anything wrong.

the filecontents environment creates a new file \jobname.bib, this is your database and later read by biber. This file is created only once, hence the warning. You should not use filecontents for your real document.

csquotes is a package by the same author as biblatex. It's not relevant for the example, so i left it out.

Now comes the tricky part, all those citations are undefined as well as »Please run biber on the file«
Package biblatex writes the keys it needs to build citations and bibitems to an auxiliary file, which is later read by biber. Biber is an external program grabbing the stuff from the database and sorting it, writing another aux-file (bbl).

Biblatex later reads in this file in another pdflatex run, putting everything back together.
Please have a look at Setting up texmaker to use biber to see how to config texmaker.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
paulosousa
Posts: 90
Joined: Sun Jun 24, 2012 8:48 pm

can't make the bibliography ...

Post by paulosousa »

Johannes, thanks for all your time and help. And sorry for the big images on previous message. :oops:
Now I am using http://tex.stackexchange.com/questions/ ... with-biber to configure TeXmaker on my mac
This is the configuration line I have for BibLatex in my TexMaker Preferences: "/usr/texbin/bibtex" %.aux
but I think I must have this "/usr/texbin/bibtex" %.bcf correct? How I must do it?
Screen Shot 2014-06-22 at 09.56.35.png
Screen Shot 2014-06-22 at 09.56.35.png (40.66 KiB) Viewed 6802 times
Screen Shot 2014-06-22 at 10.00.52.png
Screen Shot 2014-06-22 at 10.00.52.png (251.2 KiB) Viewed 6802 times
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

can't make the bibliography ...

Post by Johannes_B »

Just put biber % in there. I think the MacTeX installation was setting the PATH variable, so the program biber can be found by the OS. There is a post on the german site TeXwelt.de where you can see a screenshot just like yours, but with the right setting ;-)
Biber and TeXmaker
I guess you don't mind the german interface.

Please note the difference between BibTeX (the sorting tool developed since the 80's) and biber (the modern sorting tool).
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
paulosousa
Posts: 90
Joined: Sun Jun 24, 2012 8:48 pm

Re: can't make the bibliography ...

Post by paulosousa »

thanks a lot, for now I think all works fine.
Post Reply