BibTeX, biblatex and biberBibLaTeX: ref not printed

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Matifou
Posts: 23
Joined: Fri Jan 14, 2011 11:27 am

BibLaTeX: ref not printed

Post by Matifou »

Hi

I tried a minimal example of biblatex (see attached), the title of publication is appearing correctly, but the refs in the bibliography do not... Any idea hwo I should compile it?

If you compile it, does the ref come correcltyt?

Thanks!!
Attachments
examplebib.bib
the biblio
(3.1 KiB) Downloaded 201 times
example_min.tex
The .tex file
(258 Bytes) Downloaded 211 times
Last edited by Matifou on Tue Jan 18, 2011 3:39 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.

meho_r
Posts: 823
Joined: Tue Aug 07, 2007 5:28 pm

BibLaTeX: ref not printed

Post by meho_r »

When using refsection, for every refsection environment an .aux file is created, so you must run BiBTeX (or Biber, if you're using it as a backend for biblatex) on each additional .aux file (biblatex documentation, section 3.10.2).

So, in your example, when you run latex on example-min.tex you get a file named example_min1-blx.aux on which BiBTeX should be run:

Code: Select all

latex example-min.tex
bibtex example_min1-blx.aux
latex example-min.tex
In case you have a lot of sections, it is probably a good idea to create a script to run BiBTeX on those files for you.
Matifou
Posts: 23
Joined: Fri Jan 14, 2011 11:27 am

Re: BibLaTeX: ref not printed

Post by Matifou »

Dear Meho

I guess you recognised the example you had given me on other post :-)

Thanks a lot for detailed answer, indeed it solved the issue!

Thanks!
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

BibLaTeX: ref not printed

Post by localghost »

Matifou wrote:[…] Thanks a lot for detailed answer, indeed it solved the issue! […]
Then next time please mark the topic accordingly as written in the Board Rules (to be read before posting). Please keep that in mind for the future so that further reminders will not be necessary.


Thorsten
Matifou
Posts: 23
Joined: Fri Jan 14, 2011 11:27 am

BibLaTeX: ref not printed

Post by Matifou »

localghost wrote:Then next time please mark the topic accordingly as written in the Board Rules (to be read before posting). Please keep that in mind for the future so that further reminders will not be necessary.
Ok, sorry and thanks for reminder!
Post Reply