diff options
author | Karl Berry <karl@freefriends.org> | 2012-05-14 23:52:16 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2012-05-14 23:52:16 +0000 |
commit | 72ec54e48fe2f256b70e9e6cf71abde41f87fd47 (patch) | |
tree | 0405e85af33dfd344ed9101bff317e9fb7fdfbb5 /Master/texmf-dist/bibtex | |
parent | 08a89f62a5bda383c4c15dfc0fc006d190573213 (diff) |
chscite (14may12)
git-svn-id: svn://tug.org/texlive/trunk@26383 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/bibtex')
-rw-r--r-- | Master/texmf-dist/bibtex/bst/chscite/chscite.bst | 83 |
1 files changed, 73 insertions, 10 deletions
diff --git a/Master/texmf-dist/bibtex/bst/chscite/chscite.bst b/Master/texmf-dist/bibtex/bst/chscite/chscite.bst index 407ae430262..9a8f33996fd 100644 --- a/Master/texmf-dist/bibtex/bst/chscite/chscite.bst +++ b/Master/texmf-dist/bibtex/bst/chscite/chscite.bst @@ -8,18 +8,41 @@ %% %% This is a generated file. %% -%% Copyright (C) 2011 by Simon Sigurdhsson <ssimon@student.chalmers.se> +%% Copyright (C) 2012 by Simon Sigurdhsson <ssimon@student.chalmers.se> %% -%% This file may be distributed and/or modified under the conditions of -%% the LaTeX Project Public License, either version 1.2 of this license -%% or (at your option) any later version. The latest version of this -%% license is in: +%% 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 later version. +%% The latest version of this license is in +%% http://www.latex-project.org/lppl.txt +%% and version 1.3 or later is part of all distributions of LaTeX +%% version 2005/12/01 or later. %% -%% http://www.latex-project.org/lppl.txt +%% This work has the LPPL maintenance status `maintained'. %% -%% and version 1.2 or later is part of all distributions of LaTeX version -%% 1999/12/01 or later. +%% The Current Maintainer of this work is Simon Sigurdhsson. %% +%% This work consists of the files chscite.dtx and chscite.ins +%% and the derived filebase chscite.sty. +%% +%% +%% Copyright (C) 2012 by Simon Sigurdhsson <ssimon@student.chalmers.se> +%% +%% 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 later version. +%% The latest version of this license is in +%% http://www.latex-project.org/lppl.txt +%% and version 1.3 or later is part of all distributions of LaTeX +%% version 2005/12/01 or later. +%% +%% This work has the LPPL maintenance status `maintained'. +%% +%% The Current Maintainer of this work is Simon Sigurdhsson. +%% +%% This work consists of the files chscite.dtx and chscite.ins +%% and the derived filebase chscite.sty. +%% ENTRY { address @@ -151,7 +174,10 @@ FUNCTION {fin.entry} { add.period$ write$ - write.url + type$ "misc" = + 'skip$ + 'write.url + if$ newline$ } @@ -748,11 +774,48 @@ write$ } FUNCTION {misc} -{ cite$ ": @misc cite style not implemented!" * warning$ } +{ output.bibitem + make.list.label "(" tie.or.space.connect list.year * ")" * + author "author" item.check + title missing$ + 'skip$ + { title tie.or.space.connect add.period$ } + if$ + howpublished missing$ + 'skip$ + { howpublished emphasize tie.or.space.connect add.period$ } + if$ + URL missing$ + 'skip$ + { " \chsurl{" URL "}" * * tie.or.space.connect add.period$ } + if$ + note missing$ + 'skip$ + { "(" note ")" * * tie.or.space.connect add.period$ } + if$ + write$ + fin.entry +} FUNCTION {techreport} { cite$ ": @techreport cite style not implemented!" * warning$ } +FUNCTION {patent} +{ output.bibitem + make.list.label "(" tie.or.space.connect list.year * ")" * + author "author" item.check + title missing$ + 'skip$ + { title emphasize tie.or.space.connect add.period$ } + if$ + number missing$ + 'skip$ + { number tie.or.space.connect add.period$ } + if$ + write$ + fin.entry +} + FUNCTION {default.type} { misc } MACRO {jan} {"\chsWjanuary{}"} |