Hi all,
I'm unable to get the "andtext" option to \setupsite working. According to the old bib module manual, it should control the separation between two authors. Thus the following:
\setupbibtex[database=sample,sort=author]
\setuppublications[alternative=num]
\setupcite[left=(,right=),inbetween={,},andsep={,}]
\starttext
This is a test of the context citation module in MkIV\cite[hh2010a,Eijkhout1991].
\placepublications[criterium=text]
\stoptext
using the following sample.bib
@ARTICLE{hh2010a,
author = hh,
title = {The Font Name Mess},
journal = {MAPS},
year = {2010},
volume = {40},
pages = {2-8},
keywords = {context},
}
@BOOK{Eijkhout1991,
title = {\TeX\ by Topic. A \TeX nician's Reference},
publisher = {Addison-Wesley},
year = {1991},
author = {Victor Eijkhout},
address = {London},
keywords = {general},
}
Should produce in the output (1,2) but instead produces (1 and 2).
Is there a quick fix?
Regards.
__martin