diff options
author | Karl Berry <karl@freefriends.org> | 2011-01-11 23:20:15 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2011-01-11 23:20:15 +0000 |
commit | bf80491ac71811c63bae7131da3e651348c48d8e (patch) | |
tree | 0e60e7321ec1792e32542a79be5d7d9e8a2cff9d /Master/texmf-dist/bibtex | |
parent | 021501855e5e14602a36bc34498435dbcea267df (diff) |
aomart 1.3 (11jan11)
git-svn-id: svn://tug.org/texlive/trunk@21033 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/bibtex')
-rw-r--r-- | Master/texmf-dist/bibtex/bst/aomart/aomalpha.bst | 16 | ||||
-rw-r--r-- | Master/texmf-dist/bibtex/bst/aomart/aomplain.bst | 16 |
2 files changed, 30 insertions, 2 deletions
diff --git a/Master/texmf-dist/bibtex/bst/aomart/aomalpha.bst b/Master/texmf-dist/bibtex/bst/aomart/aomalpha.bst index 03022a2940b..663058a3e21 100644 --- a/Master/texmf-dist/bibtex/bst/aomart/aomalpha.bst +++ b/Master/texmf-dist/bibtex/bst/aomart/aomalpha.bst @@ -20,7 +20,7 @@ % This work consists of the file aomart.dtx the % derived file aomart.cls, and the file aomplain.bst % -% Version 0.10, 2010/12/18 +% Version 1.2, 2011/01/05 % %%% @@ -94,6 +94,7 @@ ENTRY series title type + url venue volume year @@ -343,6 +344,18 @@ FUNCTION {output.nonempty.doi} if$ } +FUNCTION {output.nonempty.url} +{ duplicate$ missing$ + { pop$ "" } + 'skip$ + if$ + duplicate$ empty$ + 'pop$ + { " Available at \url{" swap$ * "}. " * write$ } + if$ +} + + FUNCTION {fin.entry} { add.period$ @@ -352,6 +365,7 @@ FUNCTION {fin.entry} jfmnumber output.nonempty.jfmnumber arxiv output.nonempty.arxiv doi output.nonempty.doi + url output.nonempty.url newline$ } diff --git a/Master/texmf-dist/bibtex/bst/aomart/aomplain.bst b/Master/texmf-dist/bibtex/bst/aomart/aomplain.bst index 80ab83f5e49..4cbac9fa925 100644 --- a/Master/texmf-dist/bibtex/bst/aomart/aomplain.bst +++ b/Master/texmf-dist/bibtex/bst/aomart/aomplain.bst @@ -20,7 +20,7 @@ % This work consists of the file aomart.dtx the % derived file aomart.cls, and the file aomplain.bst % -% Version 0.9, 2010/12/04 +% Version 1.2, 2011/01/05 % %%% @@ -91,6 +91,7 @@ ENTRY series title type + url venue volume year @@ -339,6 +340,18 @@ FUNCTION {output.nonempty.doi} } +FUNCTION {output.nonempty.url} +{ duplicate$ missing$ + { pop$ "" } + 'skip$ + if$ + duplicate$ empty$ + 'pop$ + { " Available at \url{" swap$ * "}. " * write$ } + if$ +} + + FUNCTION {fin.entry} { add.period$ write$ @@ -347,6 +360,7 @@ FUNCTION {fin.entry} jfmnumber output.nonempty.jfmnumber arxiv output.nonempty.arxiv doi output.nonempty.doi + url output.nonempty.url newline$ } |