summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/bibtex/bst/aomart/aomalpha.bst
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/bibtex/bst/aomart/aomalpha.bst')
-rw-r--r--Master/texmf-dist/bibtex/bst/aomart/aomalpha.bst20
1 files changed, 16 insertions, 4 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$
}