On 11 Sep 2012, at 17:18 , Andreas Mang
is there a way to split the bibliography (at the end of the document with bibtex support) in several categories, which have different headings (similar to what latexs' multibib or splitbib does)?
Hi Andreas, As long as no official solution, worthy of ConTeXt, is available, perhaps you could use the solution that works for me. 1. Place the two categories of references in two separate .bib-files and process them to give you the two corresponding .bbl-files 2. Make a chapter Bibliography (or whatever you like to call it) with two sections, in which you input the respective .bbl-file plus a list of \nocite 's for the items you want. My .tex-file, which works with mkii and mkiv, is like this: ----------------------------------------------- \setuppublications[alternative=apa,sorttype=bbl] \setuphead[chapter][number=no] \setuphead[section][number=no] \starttext \chapter{References} \section{Articles, Books and Theses} \input TD-Bib-Bks.bbl \input TD-Bks-nocite.tex \placepublications[criterium=cite] \section{Treatises} \input TD-Bib-T.bbl \input TD-T-nocite.tex \placepublications[criterium=cite] \section{Music} \input TD-Bib-mus.bbl \input TD-mus-nocite.tex \placepublications[criterium=cite] \stoptext ------------------------------------------- I hope it helps. Best regards, Robert Blackstone