From 89e5e67f1b6774840cac214f38bf77e43aedf306 Mon Sep 17 00:00:00 2001 From: John Kitchin Date: Tue, 23 Sep 2014 12:21:07 -0400 Subject: [PATCH] add proceedings article type --- doi-utils.org | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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 -- 2.39.2