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 via email to