ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Taco Hoekwater <taco@elvenkind.com>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>
Subject: Re: Article titles not capitalized in bibliography
Date: Thu, 06 May 2010 11:28:45 +0200	[thread overview]
Message-ID: <4BE28BCD.1060709@elvenkind.com> (raw)
In-Reply-To: <002601caec83$77bf7f30$673e7d90$@com>

Tom wrote:
> Book titles retain proper capitalization from the .bib file but articles
> from periodicals do not. Only the first word of an article title is
> capitalized in the .bbl file. Even proper names in titles lose their
> capitalization. Is there an option that needs to be set to cause article
> titles to retain proper capitalization? MKII

This is controlled by the bst files and cannot be corrected elsewhere.

In each of the four bst files in bibtex/bst/context, there are two
calls to the do.t.out function:

   FUNCTION {format.t.title}
   { "" "\title" title do.t.out
     "" "\isbn" isbn do.out
   }

   FUNCTION {format.arttitle}
   { "" "\arttitle" title do.t.out }

These calls have to be replaced by do.out:

   FUNCTION {format.t.title}
   { "" "\title" title do.out
     "" "\isbn" isbn do.out
   }

   FUNCTION {format.arttitle}
   { "" "\arttitle" title do.out }

You will have to do that in a local copy, as I am a hesitant to change
this in the distribution (it would introduce compatibility problems
in already existing documents).

Best wishes,
Taco


Best wishes,
Taco
___________________________________________________________________________________
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
___________________________________________________________________________________


  reply	other threads:[~2010-05-06  9:28 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-05-05 18:47 Tom
2010-05-06  9:28 ` Taco Hoekwater [this message]
2010-05-06 15:49   ` Aditya Mahajan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4BE28BCD.1060709@elvenkind.com \
    --to=taco@elvenkind.com \
    --cc=ntg-context@ntg.nl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).