From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/30874 Path: news.gmane.org!not-for-mail From: Peter Fisker Skjoldan Newsgroups: gmane.comp.tex.context Subject: Bib module and sectionblocks Date: Sun, 17 Sep 2006 23:54:13 +0200 Message-ID: Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1158530088 20381 80.91.229.2 (17 Sep 2006 21:54:48 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 17 Sep 2006 21:54:48 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Sun Sep 17 23:54:46 2006 Return-path: Envelope-to: gctc-ntg-context-518@m.gmane.org Original-Received: from ronja.vet.uu.nl ([131.211.172.88] helo=ronja.ntg.nl) by ciao.gmane.org with esmtp (Exim 4.43) id 1GP4ak-0004BX-Ek for gctc-ntg-context-518@m.gmane.org; Sun, 17 Sep 2006 23:54:22 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 868C91FDFB; Sun, 17 Sep 2006 23:54:21 +0200 (CEST) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 20139-02; Sun, 17 Sep 2006 23:54:16 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 7FEEC1FDD6; Sun, 17 Sep 2006 23:54:16 +0200 (CEST) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 9CBCF1FDD6 for ; Sun, 17 Sep 2006 23:54:14 +0200 (CEST) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 19931-04 for ; Sun, 17 Sep 2006 23:54:13 +0200 (CEST) Original-Received: from smtp-out04.alice.it (smtp-out04.alice.it [85.37.17.100]) by ronja.ntg.nl (Postfix) with SMTP id B869C1FDCA for ; Sun, 17 Sep 2006 23:54:13 +0200 (CEST) Original-Received: from FBCMMO02.fbc.local ([192.168.68.196]) by smtp-out04.alice.it with Microsoft SMTPSVC(6.0.3790.1830); Sun, 17 Sep 2006 23:54:13 +0200 Original-Received: from FBCMCL01B01.fbc.local ([192.168.69.82]) by FBCMMO02.fbc.local with Microsoft SMTPSVC(6.0.3790.1830); Sun, 17 Sep 2006 23:54:13 +0200 Original-Received: from [87.5.216.71] ([87.5.216.71]) by FBCMCL01B01.fbc.local with Microsoft SMTPSVC(6.0.3790.1830); Sun, 17 Sep 2006 23:54:13 +0200 Original-To: ntg-context@ntg.nl X-Mailer: Apple Mail (2.752.2) X-OriginalArrivalTime: 17 Sep 2006 21:54:13.0989 (UTC) FILETIME=[D08A5950:01C6DAA3] X-Virus-Scanned: amavisd-new at ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.7 Precedence: list List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: ntg-context-bounces@ntg.nl Errors-To: ntg-context-bounces@ntg.nl X-Virus-Scanned: amavisd-new at ntg.nl Xref: news.gmane.org gmane.comp.tex.context:30874 Archived-At: Using the t-bib module I can't get the numbered cite option to work with the sectionblocks \startfrontmatter and the like. When I put the publication list inside one of the blocks I get the number only inside that block. In the other blocks the result is [ ]. If I put the publication list outside of any blocks the number appears only in the bodymatter sectionblock. Is this correct behaviour? And how can I fix the problem? Thanks in advance, Peter Here is a sample file: %--------------------------------- \usemodule[bib] \setuppublications[alternative=num,refcommand=num] \setuppublicationlist[criterium=all] \startpublication[k=rayl96, t=book, a={{Rayleigh}}, y=1896, n=45, s=Ray96] \author[]{Lord}[Lord]{}{Rayleigh} \pubyear{1896} \title{Theory of Sound} \pubname{Macmillan} \stoppublication \starttext \startfrontmatter \subject{Front matter} An early book on acoustics \cite[rayl96]. % no number \stopfrontmatter \startbodymatter \subject{Body matter} An early book on acoustics \cite[rayl96]. % number as expected \stopbodymatter \startappendices \subject{Appendices} An early book on acoustics \cite[rayl96]. % no number \stopappendices \subject{References} \placepublications \stoptext %---------------------------------