From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/68668 Path: news.gmane.org!not-for-mail From: "Thomas A. Schmitz" Newsgroups: gmane.comp.tex.context Subject: Re: [bibliography] publications layout Date: Tue, 24 May 2011 11:39:14 +0200 Message-ID: References: <20110523225719.GX20248@rae.vm.bytemark.co.uk> <4DDB5FFE.3040500@gmx.de> <20110524090523.GY20248@rae.vm.bytemark.co.uk> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset="us-ascii"; Format="flowed"; DelSp="yes" Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1306229976 4178 80.91.229.12 (24 May 2011 09:39:36 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 24 May 2011 09:39:36 +0000 (UTC) To: mailing list for ConTeXt users Original-X-From: ntg-context-bounces@ntg.nl Tue May 24 11:39:32 2011 Return-path: Envelope-to: gctc-ntg-context-518@m.gmane.org Original-Received: from balder.ntg.nl ([195.12.62.10]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QOo5L-0007sB-9k for gctc-ntg-context-518@m.gmane.org; Tue, 24 May 2011 11:39:31 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by balder.ntg.nl (Postfix) with ESMTP id BDA2FCAD56; Tue, 24 May 2011 11:39:30 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at balder.ntg.nl Original-Received: from balder.ntg.nl ([127.0.0.1]) by localhost (balder.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id XF9YbMnfKbAj; Tue, 24 May 2011 11:39:28 +0200 (CEST) Original-Received: from balder.ntg.nl (localhost [127.0.0.1]) by balder.ntg.nl (Postfix) with ESMTP id 1C500CAD42; Tue, 24 May 2011 11:39:28 +0200 (CEST) Original-Received: from localhost (localhost [127.0.0.1]) by balder.ntg.nl (Postfix) with ESMTP id 76E6ACAD42 for ; Tue, 24 May 2011 11:39:26 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at balder.ntg.nl Original-Received: from balder.ntg.nl ([127.0.0.1]) by localhost (balder.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id bfvZQXT32Ta1 for ; Tue, 24 May 2011 11:39:15 +0200 (CEST) Original-Received: from filter1-ams.mf.surf.net (filter1-ams.mf.surf.net [192.87.102.69]) by balder.ntg.nl (Postfix) with ESMTP id 5B52ECAD30 for ; Tue, 24 May 2011 11:39:15 +0200 (CEST) Original-Received: from uni-bonn.de (mail.uni-bonn.de [131.220.15.113]) by filter1-ams.mf.surf.net (8.14.3/8.14.3/Debian-5+lenny1) with ESMTP id p4O9dE9E017961 for ; Tue, 24 May 2011 11:39:14 +0200 Original-Received: from homer.philologie.uni-bonn.de ([131.220.89.142] verified) by fe2.uni-bonn.de (CommuniGate Pro SMTP 5.2.12) with ESMTP id 62256222 for ntg-context@ntg.nl; Tue, 24 May 2011 11:39:14 +0200 In-Reply-To: <20110524090523.GY20248@rae.vm.bytemark.co.uk> X-Mailer: Apple Mail (2.936) X-Bayes-Prob: 0.0001 (Score 0, tokens from: @@RPTN) X-CanIt-Geo: ip=131.220.15.113; country=DE; region=07; city=Bonn; latitude=50.7333; longitude=7.1000; http://maps.google.com/maps?q=50.7333,7.1000&z=6 X-CanItPRO-Stream: uu:ntg-context@ntg.nl (inherits from uu:default, base:default) X-Canit-Stats-ID: 06ELlDeUd - 88ea3ec25cd8 - 20110524 X-Scanned-By: CanIt (www . roaringpenguin . com) on 192.87.102.69 X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.12 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 Xref: news.gmane.org gmane.comp.tex.context:68668 Archived-At: On May 24, 2011, at 11:05 AM, Pontus Lurcock wrote: >> ? I'm using "ams" there and realized that the title tag of @book is >> not >> treated that way (so with @book there are caps inside the title >> without >> extra {} in the bib-file). > > This is the case for most bibliography styles: journal articles only > get capitals for the first letter, proper nouns, chemical symbols, > etc.; > Book Titles get Capital Letters for Most Words. This is controlled by the "bst" style you use. If you look into the directory $CONTEXT/tex/texmf-context/bibtex/bst/context/ you'll find a number of them. They contain FUNCTION {do.t.out} { duplicate$ empty$ { pop$ pop$ write$} { "{" swap$ "t" change.case$ * "}" * * write$ pop$ newline$ } if$ } this is the function that changes uppercase to lowercase (I have no idea why this was ever considered a good thing, but scientists, as opposed to scholars in the humanities, can be very strange people). Further on, you'll find that this function is used in e.g. FUNCTION {format.arttitle} { "" "\arttitle" title do.t.out } if you change this to FUNCTION {format.arttitle} { "" "\arttitle" title do.out } the case will not be changed. And: this is something I found out by sheer bloody-mindedness, I don't have the faintest idea about bst- syntax, and from what I hear, most people think it's a bloody mess. So use at your own risk... HTH Thomas ___________________________________________________________________________________ If your question is of interest to others as well, please add an entry to the Wiki! maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context webpage : http://www.pragma-ade.nl / http://tex.aanhet.net archive : http://foundry.supelec.fr/projects/contextrev/ wiki : http://contextgarden.net ___________________________________________________________________________________