diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/biblatex/examples/16-numeric-prefixed-1.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/biblatex/examples/16-numeric-prefixed-1.tex | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/Master/texmf-dist/doc/latex/biblatex/examples/16-numeric-prefixed-1.tex b/Master/texmf-dist/doc/latex/biblatex/examples/16-numeric-prefixed-1.tex index 8835878e049..d8597789b13 100644 --- a/Master/texmf-dist/doc/latex/biblatex/examples/16-numeric-prefixed-1.tex +++ b/Master/texmf-dist/doc/latex/biblatex/examples/16-numeric-prefixed-1.tex @@ -29,6 +29,7 @@ and not type=collection } + \begin{document} \section*{Prefixed numerical citations} @@ -43,11 +44,15 @@ % And now the sub-bibliographies: we use three of them (based on the % entry type). Each sub-bibliography assigns a different prefix: -\printbibliography[heading=subbibliography,title={Articles},type=article,prefixnumbers={A}] -\printbibliography[heading=subbibliography,title={Books},type=book,prefixnumbers={B}] -\printbibliography[heading=subbibliography,title={Collections},type=collection,prefixnumbers={C}] +\newrefcontext[labelprefix={A}] +\printbibliography[heading=subbibliography,title={Articles},type=article] +\newrefcontext[labelprefix={B}] +\printbibliography[heading=subbibliography,title={Books},type=book] +\newrefcontext[labelprefix={C}] +\printbibliography[heading=subbibliography,title={Collections},type=collection] % The catch-all sub-bibliography for all remaining types: -\printbibliography[heading=subbibliography,title={Other Sources},filter=other,prefixnumbers={O}] +\newrefcontext[labelprefix={O}] +\printbibliography[heading=subbibliography,title={Other Sources},filter=other] \end{document} |