From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/25850 Path: news.gmane.org!not-for-mail From: Taco Hoekwater Newsgroups: gmane.comp.tex.context Subject: Re: Two questions: Bib module and Headers Date: Sat, 04 Feb 2006 09:07:25 +0100 Message-ID: <43E460BD.6000805@elvenkind.com> References: <1139020933.2717.5.camel@a213-22-133-32.cpe.netcabo.pt> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1139040431 11547 80.91.229.2 (4 Feb 2006 08:07:11 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 4 Feb 2006 08:07:11 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Sat Feb 04 09:07:09 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 1F5IRm-0005ks-54 for gctc-ntg-context-518@m.gmane.org; Sat, 04 Feb 2006 09:07:06 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 2585A12841; Sat, 4 Feb 2006 09:07:04 +0100 (CET) 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 13096-02; Sat, 4 Feb 2006 09:07:00 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id EE7B3127ED; Sat, 4 Feb 2006 09:06:59 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 37B1F127ED for ; Sat, 4 Feb 2006 09:06:58 +0100 (CET) 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 13056-02 for ; Sat, 4 Feb 2006 09:06:56 +0100 (CET) Original-Received: from post-24.mail.nl.demon.net (post-24.mail.nl.demon.net [194.159.73.194]) by ronja.ntg.nl (Postfix) with SMTP id EBE4E127E2 for ; Sat, 4 Feb 2006 09:06:56 +0100 (CET) Original-Received: from boo.demon.nl ([82.161.175.147]:42992 helo=[192.168.1.3]) by post-24.mail.nl.demon.net with esmtp (Exim 4.51) id 1F5IRc-000CZp-6f for ntg-context@ntg.nl; Sat, 04 Feb 2006 08:06:56 +0000 User-Agent: Mozilla Thunderbird 1.0 (X11/20050215) X-Accept-Language: en-us, en Original-To: mailing list for ConTeXt users In-Reply-To: <1139020933.2717.5.camel@a213-22-133-32.cpe.netcabo.pt> 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:25850 Archived-At: Miguel Queiros wrote: > Hi, > > I'm using Bib module and bibtex to create my bibliography. > I would like to order it by author name, and I'v tried > it using: > > \setupbibtex[database=opensource-educacao,sort=author] > > But didn't get the desired result. > Should I be using anything else ? You need also: \setuppublications[sorttype=bbl] Because the default is to sort by order of appearance in \cite commands first, and only for the remaining part use the bbl ordering. > And now for the header question: > > I'm using the following code to change the font > size of my header from 12pt to 10pt. > > \setupheadertexts[][\setups{ta}] > > \startsetups[ta] > \setupbodyfont[10pt] > \getmarking[chapter] > \stopsetups > > Using \setupbodyfont[10pt] in this case > is the best solution ? \switchtobodyfont is somewhat better for this because does not do as much as a full document-wide switch (and is therefore faster). You may even get away with only a single font command like \tfx, but that does not work too well if there are embedded math formulas or font switches in your document. Taco