


J'essaye depuis plusieurs jours d'avoir plusieurs bibliographies.
Après avoir échoué à utiliser bibunit et chapterbib, j'échoue à utiliser biblatex.
Voyez ci-dessous deux exemples minimaux que j'ai trouvé dans des modes d'emploi et qui ne fonctionnent pas chez moi.
Je serais enchanté si on pouvait m'aider


- Code: Tout sélectionner
\documentclass[11pt,a4paper,norsk]{article}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc,url}
\usepackage{babel,csquotes,newcent,textcomp}
\usepackage[backend=biber,sortlocale=nb_NO,sortcites]{biblatex}
\addbibresource{bibliog_texture.bib}
\begin{document}
\section{Grunnlaget}
\begin{refsection}
\cite{dobrzan}
\end{refsection}
\section{Om}
\begin{refsection}
\cite{hylton}
\end{refsection}
\printbibliography[section=1,title=Bibliografi om Grunnlaget]
\printbibliography[section=2,title=Bibliografi om ]
\end{document}
et
- Code: Tout sélectionner
\documentclass[11pt,a4paper,norsk]{article}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc,url}
\usepackage{biblatex}
\defbibheading{subbibliography}{%
\section*{References for Chapter \ref{refsection:\therefsection}}}
\addbibresource{biblio/bibliog_texture.bib}
\begin{document}
\begin{refsection}
\cite{dobrzan}
\end{refsection}
\begin{refsection}
\cite{hylton}
\end{refsection}
\printbibliography[section=1,heading=subbibliography]
\printbibliography[section=2,heading=subbibliography]
\end{document}