diff options
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$ } |