X-Git-Url: https://git.donarmstrong.com/?p=org-ref.git;a=blobdiff_plain;f=doi-utils.org;h=e6c026688399f477ba677b39961d8b756efbe90a;hp=9a28a9d5f8b193c0bf2f8b5e55a7c348c348131a;hb=89e5e67f1b6774840cac214f38bf77e43aedf306;hpb=82ca356be6ffeb5752e94f46c815419c67098309 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