-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Case of references in several subdivided bibliographies #1372
Comments
This is a ME:
|
So there is the same problem in |
You can use the \documentclass[a4paper,french]{book}
%% Préambule
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\usepackage{csquotes}
\usepackage[backend=biber, style=alphabetic, refsection=chapter]{biblatex}
\addbibresource{test.bib}
\usepackage{hyperref}
%% Fin préambule
\begin{document}
\chapter{Prim}
\cite{Demoule2009}
\cite{besse2014}
\printbibliography
\chapter{sek}
\cite{besse2014}
\printbibliography
\end{document} |
Hi @zepinglee , \documentclass[a4paper,french]{book}
%% Préambule
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{csquotes}
\usepackage[backend=biber, style=alphabetic]{biblatex}
\usepackage[french]{babel}
\usepackage{hyperref}
\addbibresource{test.bib}
\usepackage{titlesec}
\DeclareBibliographyCategory{sek}
\DeclareBibliographyCategory{sekbis}
\DeclareBibliographyCategory{prim}
\DeclareBibliographyCategory{primbis}
\newcommand*{\citeprim}[2][]{\addtocategory{prim}{#2}\cite[#1]{#2}}
\newcommand*{\citeprimbis}[2][]{\addtocategory{primbis}{#2}\cite[#1]{#2}}
\newcommand*{\citesek}[2][]{\addtocategory{sek}{#2}\cite[#1]{#2}}
\newcommand*{\citesekbis}[2][]{\addtocategory{sekbis}{#2}\cite[#1]{#2}}
%% Fin préambule
\begin{document}
\chapter{Prim}
\citeprim{Demoule2009}
\citeprimbis{leroi-gourhan2005}
\citeprimbis{gaucher2005}
\citeprim{besse2014}
\printbibliography[category=prim, title=Toto]
\printbibliography[category=primbis, title=Titi]
\chapter{sek}
\citesekbis{besse2014}
\citesek{gaucher2005}
\printbibliography[title=Tutu,category=sek]
\printbibliography[title=Tata, category=sekbis]
\end{document} |
Hey! |
Hi @moewew ! |
@plk I guess this is a bug... |
I think you should first ask on tex.stackexchange.com as it's not clear if there is any bug here - you might just need some more sophisticated use of sections/segments and |
Sorry, for not replying sooner. I'm stretched quite thin at the moment and this looked more like a question for TeX.SX or your favourite LaTeX forum than a clear bug report. We don't really have the resources and time to provide support here - you're much more likely to get that in a forum - we can only track bugs and clear feature requests here. |
In my last example, the problem is: if I click on the reference [besse2014] or [gaucher2005] in chapter Here the file
|
Hi,
I would like to write a document with several chapters, and where each chapter has its own subdivided bibliography.
It is therefore quite possible for a reference to be cited in several different chapters.
Until now, I've been using
multibib
, but I've just realized that there seems to be a bug in this extension.Visually, I get what I want, but all occurrences of the said citation refer to the first time it appears in a bibliography, when clicked on.
I'm having trouble seeing if this is possible to achieve with
biblatex
. What do you think?The text was updated successfully, but these errors were encountered: