From: John Kitchin Date: Tue, 23 Sep 2014 16:21:07 +0000 (-0400) Subject: add proceedings article type X-Git-Url: https://git.donarmstrong.com/?p=org-ref.git;a=commitdiff_plain;h=89e5e67f1b6774840cac214f38bf77e43aedf306;ds=sidebyside add proceedings article type --- diff --git a/doi-utils.org b/doi-utils.org index 9a28a9d..e6c0266 100644 --- a/doi-utils.org +++ b/doi-utils.org @@ -451,6 +451,7 @@ Now we define a function that fills in that template from the metadata. results author title + booktitle journal year volume @@ -485,6 +486,20 @@ Now we define a function that fills in that template from the metadata. doi = {%{doi}}, url = {%{url}}, }")) + + ((string= type "proceedings-article") + (setq booktitle (plist-get results :container-title)) + (doi-utils-expand-template "@inproceedings{, + author = {%{author}}, + title = {%{title}}, + booktitle = {%{booktitle}}, + year = {%{year}}, + month = {%{month}}, + pages = {%{pages}}, + doi = {%{doi}}, + url = {%{url}}, +}")) + (t (message-box "%s not supported yet." type))))) #+END_SRC