/utphys

To download this project, use:
bzr branch http://golem.ph.utexas.edu/~distler/code/utphys/

« back to all changes in this revision

Viewing changes to utphys.bst

  • Committer: Jacques Distler
  • Date: 2011-02-03 16:56:56 UTC
  • Revision ID: distler@golem.ph.utexas.edu-20110203165656-5wgsy6f0w6l6uat2
Fix captialization of titles

Reported by Ling Weak.

Show diffs side-by-side

added added

removed removed

21
21
%                    Jonathan Flynn' suggestion. SPIRES now supports this field.
22
22
%                 7) Improved output of Proceedings entries
23
23
%
24
 
%    Modified by Jacques Distler, 4/08
 
24
%    Modified by Jacques Distler, 2/11
25
25
%           History: ver 1.0  9/96
26
26
%                    ver 1.1 10/96 - added "collaboration" field
27
27
%                    ver 1.2  7/97 - added a "\providecommand{\href}[2]{#2}"
51
51
%                                    fix journal number formatting.
52
52
%                   ver 2.5   9/10 - Internationalization and some more journal
53
53
%                                    MACROs (thanks to Mateus Araujo)
 
54
%                   ver 2.6   2/11 - Yipes! Fix capitalization of titles, spooged
 
55
%                                    in previous version. (Reported by Ling Weak)
54
56
%
55
57
% HyperTeX Wizardry:
56
58
%
469
471
FUNCTION {format.title}
470
472
{ title empty$
471
473
    { "" }
472
 
    { "``" title * ",''" * }
 
474
    { "``" title "t" change.case$ * ",''" * }
473
475
  if$
474
476
}
475
477
 
476
478
FUNCTION {format.title.p}
477
479
{ title empty$
478
480
    { "" }
479
 
    { "``" title * ".''" * }
 
481
    { "``" title "t" change.case$ * ".''" * }
480
482
  if$
481
483
}
482
484