I am using References after each chapter to print cited papers in that chapter, as well as a Complete Bibliography at the end. Now, I want a customized version of bibliography at the end of the chapter, while the complete bibliography will have the default setting.
Consider the following MWE (copied from here):
\documentclass{book}
\usepackage[defernums=true, hyperref, backref, refsegment=chapter]{biblatex}
\usepackage[colorlinks]{hyperref}
\defbibheading{references}[References]{%
\section*{#1}%
\markboth{#1}{#1}%
}
\defbibheading{bibliography}[Complete Bibliography]{%
\chapter*{#1}%
\addcontentsline{toc}{chapter}{#1}
\markboth{#1}{#1}%
}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{A01,
author = {Author, A. and Duthor, D.},
year = {2001},
title = {Alpha},
shortdesc = {Conference1}
}
@misc{B02,
author = {Buthor, B. and Euther, E. and Futher F.},
year = {2002},
title = {Bravo},
shortdesc = {Journal2}
}
@misc{C03,
author = {Cuthor, C.},
year = {2003},
title = {Charlie},
shortdesc = {Workshop}
}
\end{filecontents}
\bibliography{\jobname}
\begin{document}
\chapter{First Chapter}
Some more text \autocite{A01,B02}.
\printbibliography[heading=references,segment=\therefsegment]
%% This will have differnet format than Complete Bibliography
%% [#] Lastname1, Lastname2, ...: ShortDescription'yy
%%% [1] Author, Duthor: Conference1'01
%%% [2] Buthor, Euther, Futher: Journal2'02
\chapter{Second Chapter}
Some text \autocite{A01,C03}.
\printbibliography[heading=references,segment=\therefsegment]
\printbibliography[heading=bibliography]
\end{document}
I want the References will have the format:
Lastname1, Lastname2, ..., LastnameN: ShortDescription'YY
Lastname1 to LastnameN are last names for N authors; ShortDescription is a keyword given in the bibentry by shortdesc; followed by upper comma '; YY is the last two digits of the year and no \backref. For example, after Chapter 1, we'll have the following References:
[1 ] Author, Duthor: Conference1'01
[2] Buthor, Euther, Futher: Journal2'02
Update
I just noticed the hyperlink from the citations goes to the References. Can this be changed such that it points to the Main Bibliography item?



andproblem by putting\renewcommand*{\finalnamedelim}{\addcomma\space}after\DeclareBibliographyDriver{chapterref}{line – hola Jun 02 '17 at 18:29\renewcommand*{\finalnamedelim}{\multinamedelim}, though that is a matter of taste. But you should make sure to include the%. – moewe Jun 03 '17 at 12:58%? I thought that was an escape character for comment. – hola Jun 03 '17 at 14:52%is needed to avoid spurious spaces, see here. I think it was unlikely that a missing%at that position would have caused trouble, but better be safe than sorry and it is a good habit to put%where the could be a problem. Have a look at the edit for two-digit years. (Note that the images have not been updated.) – moewe Jun 03 '17 at 15:40style=trad-alpha[https://tex.stackexchange.com/a/69706/38244]. Should I post this as a follow-up question? – hola Jun 10 '17 at 10:55\defbibenvironment{chapterref}), so that the link that does make it in the end goes to the complete bibliography. The relevant code in\defbibenvironment{chapterref}is\let\blx@anchor\relax. – moewe Nov 28 '20 at 16:23