I would like to subdivide my bibliography into sections to let me distinguish the type of the references. How can I do this?
Actually, I have a .tex and a .bib example file as follows:
\documentclass[11pt,a4paper]{book}
\usepackage[utf8]{inputenc}
\usepackage[francais]{babel}
\usepackage[T1]{fontenc}
\author{sk001}
\title{My title}
\begin{document}
J'ai inclu un ouvrage général \cite{book1}, et un ouvrage spécialisé \cite{book2}
\bibliography{bibliographie}
\bibliographystyle{alpha}
\end{document}
Ouvrages généraux
@book{
book1,
title="Premier document utilisé",
author="Auteur 1",
year="2013"
}
Ouvrages spéciaux
@book{
book2,
title="Deuxième document utilisé",
autor="Auteur 2",
year="1998"
}
How can I proceed?
multibibpackage. This posts (http://tex.stackexchange.com/questions/127753/process-multiple-bibtex-files/127770#127770, http://tex.stackexchange.com/questions/146439/multibib-bibliographies-as-subsections/146451#146451) and the documentation, of course, can help you to get into it. – Ruben Jan 11 '14 at 13:01