BibTeX, biblatex and biber[SOLVED] several bib files for several bibliographies

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
BastienBastien
Posts: 40
Joined: Mon Aug 20, 2012 2:27 pm

[SOLVED] several bib files for several bibliographies

Post by BastienBastien »

Hello Dear LaTeX users,

I've got a problem!
I am writing a document, and I use two different BIB files, so that it makes my life easier.
And to make the life of the reader easier, I would like to keep TWO bibliographies at the end of my document.

Here is my code:

Code: Select all

\usepackage[backend=biber,giveunits=true,style=alphabetic,url=false,doi=false,isbn=true,eprint=false]{biblatex}
\addbibressource{intro.bib}
\addbibressource{etudebiblio.bib}
And at the end of my document, there is:

Code: Select all

\nocite{*}
\printbibliography

\addcontentsline{toc}{chapter}{Bibliographie}
I tried to write:

Code: Select all

\printbibliography{intro}
\printbibliography{etudebiblio}
But it doesn't help, because I get a "merged" bibliography and I would like to have TWO separate bibliographies.

Please note I do not want to have a bibliography for each chapter.
I only want them at the end of the document, but splitted as it is splitted in several .BIB files.

Do you have an idea?

NOTE: there could be some small mistakes in the code because I haven't copy/past the code but copied it by hand.

Thanks,
Me
Last edited by BastienBastien on Sat Dec 02, 2017 6:26 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.

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

several bib files for several bibliographies

Post by Johannes_B »

The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
BastienBastien
Posts: 40
Joined: Mon Aug 20, 2012 2:27 pm

[SOLVED] several bib files for several bibliographies

Post by BastienBastien »

Thanks boy,
I gave it a try and it works fine!
Post Reply