diff options
author | Karl Berry <karl@freefriends.org> | 2017-04-16 22:18:59 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-04-16 22:18:59 +0000 |
commit | 4ced71c3924d49982b3a67a7e2967fe29ef3241c (patch) | |
tree | df03d06afda39277ba8cea532afe48a66f55d036 /Master/texmf-dist/bibtex | |
parent | 46ab9ee2f4bd479a0161bf89e9431592b843f6d3 (diff) |
aomart (14apr17)
git-svn-id: svn://tug.org/texlive/trunk@43859 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/bibtex')
-rw-r--r-- | Master/texmf-dist/bibtex/bst/aomart/aomalpha.bst | 18 | ||||
-rw-r--r-- | Master/texmf-dist/bibtex/bst/aomart/aomplain.bst | 18 |
2 files changed, 32 insertions, 4 deletions
diff --git a/Master/texmf-dist/bibtex/bst/aomart/aomalpha.bst b/Master/texmf-dist/bibtex/bst/aomart/aomalpha.bst index 0c0dd29ff1f..d8cfcf139d6 100644 --- a/Master/texmf-dist/bibtex/bst/aomart/aomalpha.bst +++ b/Master/texmf-dist/bibtex/bst/aomart/aomalpha.bst @@ -77,6 +77,7 @@ ENTRY editor howpublished institution + issue jfmnumber journal key @@ -473,7 +474,7 @@ FUNCTION {format.booktitle} } -FUNCTION {format.journal.vol.year} +FUNCTION {format.journal.vol.num.year} { journal empty$ { "journal name" missing.warning ""} { " \emph{" journal * "}" * } @@ -482,6 +483,19 @@ FUNCTION {format.journal.vol.year} 'skip$ { " \textbf{" * volume * "}" * } if$ + number empty$ + { issue empty$ + 'skip$ + { " no.~" * issue * } + if$ + } + { issue empty$ + 'skip$ + {"both number and issue are present in " cite$ * warning$} + if$ + " no.~" * number * + } + if$ year empty$ { "year" missing.warning } { " (" * year * ")" * } @@ -802,7 +816,7 @@ FUNCTION {article} format.title "title" output.check titlenote output crossref missing$ - { format.journal.vol.year "journal, volume, and year" output.check + { format.journal.vol.num.year "journal, volume, and year" output.check format.pages "pages" output.check } { format.article.crossref output.nonnull diff --git a/Master/texmf-dist/bibtex/bst/aomart/aomplain.bst b/Master/texmf-dist/bibtex/bst/aomart/aomplain.bst index d9673227648..2a498de1487 100644 --- a/Master/texmf-dist/bibtex/bst/aomart/aomplain.bst +++ b/Master/texmf-dist/bibtex/bst/aomart/aomplain.bst @@ -75,6 +75,7 @@ ENTRY editor howpublished institution + issue jfmnumber journal key @@ -469,7 +470,7 @@ FUNCTION {format.booktitle} } -FUNCTION {format.journal.vol.year} +FUNCTION {format.journal.vol.num.year} { journal empty$ { "journal name" missing.warning ""} { " \emph{" journal * "}" * } @@ -478,6 +479,19 @@ FUNCTION {format.journal.vol.year} 'skip$ { " \textbf{" * volume * "}" * } if$ + number empty$ + { issue empty$ + 'skip$ + { " no.~" * issue * } + if$ + } + { issue empty$ + 'skip$ + {"both number and issue are present in " cite$ * warning$} + if$ + " no.~" * number * + } + if$ year empty$ { "year" missing.warning } { " (" * year * ")" * } @@ -797,7 +811,7 @@ FUNCTION {article} format.title "title" output.check titlenote output crossref missing$ - { format.journal.vol.year output + { format.journal.vol.num.year output format.pages "pages" output.check } { format.article.crossref output.nonnull |