diff options
author | Karl Berry <karl@freefriends.org> | 2017-01-30 23:31:56 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-01-30 23:31:56 +0000 |
commit | 58fd9c5c6b6649b4e046117dd40feffa5837c1ec (patch) | |
tree | 1dcee98d36477fe5bda6ca4192b3e2f507cf8580 /Master/texmf-dist/bibtex | |
parent | 2e77dc02ffcc03e8c225ae621ee3f5703607be7f (diff) |
aomart (30jan17)
git-svn-id: svn://tug.org/texlive/trunk@43096 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/bibtex')
-rw-r--r-- | Master/texmf-dist/bibtex/bst/aomart/aomalpha.bst | 20 | ||||
-rw-r--r-- | Master/texmf-dist/bibtex/bst/aomart/aomplain.bst | 17 |
2 files changed, 30 insertions, 7 deletions
diff --git a/Master/texmf-dist/bibtex/bst/aomart/aomalpha.bst b/Master/texmf-dist/bibtex/bst/aomart/aomalpha.bst index 803f87c1d4e..0c0dd29ff1f 100644 --- a/Master/texmf-dist/bibtex/bst/aomart/aomalpha.bst +++ b/Master/texmf-dist/bibtex/bst/aomart/aomalpha.bst @@ -2,7 +2,7 @@ %%% This is aomplain.bst file, based on amsplain.bst by AMS %%% to support Annals of Mathematics specific fields. %%% -% Copyright 2010-2016, The Annals of Mathematics. +% Copyright 2010--2017, The Annals of Mathematics. % This work may be distributed and/or modified under the % conditions of the LaTeX Project Public License, either % version 1.3 of this license or (at your option) any @@ -17,10 +17,9 @@ % The Current Maintainer of this work is Boris Veytsman, % <borisv@lk.net> % -% This work consists of the file aomart.dtx the +% This work consists of the file aomart.dtx, the % derived file aomart.cls, and the files aomplain.bst and aomalpha.bst % -% %%% % See the file btxbst.doc for extra documentation other than @@ -100,6 +99,8 @@ ENTRY year zblnumber titlenote + totalpages + pagetotal } {} { label extra.label sort.label bysame } @@ -627,9 +628,20 @@ FUNCTION {multi.page.check} multiresult } +% pagetotal is a synonym of totalpages: some styles use +% one, and some another + FUNCTION {format.pages} { pages empty$ - { "" } + { totalpages empty$ + { pagetotal empty$ + { "" } + { pagetotal "~pp." *} + if$ + } + { totalpages "~pp." *} + if$ + } { pages n.dashify } if$ } diff --git a/Master/texmf-dist/bibtex/bst/aomart/aomplain.bst b/Master/texmf-dist/bibtex/bst/aomart/aomplain.bst index 4d5b23690f0..7d06eba0548 100644 --- a/Master/texmf-dist/bibtex/bst/aomart/aomplain.bst +++ b/Master/texmf-dist/bibtex/bst/aomart/aomplain.bst @@ -2,7 +2,7 @@ %%% This is aomplain.bst file, based on amsplain.bst by AMS %%% to support Annals of Mathematics specific fields. %%% -% Copyright 2010-2016, The Annals of Mathematics. +% Copyright 2010-2017, The Annals of Mathematics. % This work may be distributed and/or modified under the % conditions of the LaTeX Project Public License, either % version 1.3 of this license or (at your option) any @@ -17,7 +17,7 @@ % The Current Maintainer of this work is Boris Veytsman, % <borisv@lk.net> % -% This work consists of the file aomart.dtx the +% This work consists of the file aomart.dtx, the % derived file aomart.cls, and the files aomplain.bst and aomalpha.bst % % @@ -621,9 +621,20 @@ FUNCTION {multi.page.check} multiresult } +% pagetotal is a synonym of totalpages: some styles use +% one, and some another + FUNCTION {format.pages} { pages empty$ - { "" } + { totalpages empty$ + { pagetotal empty$ + { "" } + { pagetotal "~pp." *} + if$ + } + { totalpages "~pp." *} + if$ + } { pages n.dashify } if$ } |