@article{lee_understanding_2018, title = {Understanding the {Role} of {Functional} {Groups} in {Polymeric} {Binder} for {Electrochemical} {Carbon} {Dioxide} {Reduction} on {Gold} {Nanoparticles}}, volume = {28}, copyright = {{\textcopyright} 2018 WILEY-VCH Verlag GmbH \& Co. KGaA, Weinheim}, issn = {1616-3028}, url = {https://onlinelibrary.wiley.com/doi/abs/10.1002/adfm.201804762}, doi = {10.1002/adfm.201804762}, abstract = {Electrochemical CO2 reduction reaction (CO2RR) is one of the promising strategies for converting CO2 to value-added chemicals. Gold (Au) catalysts are considered to be the best benchmarking materials for CO2RR to produce CO. In this work, the role of different functional groups of polymeric binders on CO2RR over Au catalysts is systematically investigated by combined experimental measurements and density functional theory (DFT) calculations. Especially, it is revealed that the functional groups can play a role in suppressing the undesired hydrogen evolution reaction, the main competing reaction against CO2RR, thus enabling more catalytic active sites to be available for CO2RR and enhancing the CO2RR activity. Consistent with the DFT prediction, fluorine (F)-containing functional groups in the F-rich polytetrafluoroethylene binder lead to a high Faradaic efficiency (?94.7\%) of CO production. This study suggests a new strategy by optimizing polymeric binders for the selective CO2RR.}, language = {en}, number = {45}, urldate = {2018-11-11}, journal = {Advanced Functional Materials}, author = {Lee, Ji Hoon and Kattel, Shyam and Xie, Zhenhua and Tackett, Brian M. and Wang, Jiajun and Liu, Chang-Jun and Chen, Jingguang G.}, month = nov, year = {2018}, keywords = {binders, density functional theories, electrochemical carbon dioxide reduction, functional groups, gold}, pages = {1804762}, file = {Full Text PDF:E\:\\zotero\\storage\\QC4NU7WY\\Lee ?? - 2018 - Understanding the Role of Functional Groups in Pol.pdf:application/pdf} }
Lee, Ji Hoon and Kattel, Shyam and Xie, Zhenhua and Tackett, Brian M. and Wang, Jiajun and Liu, Chang-Jun and Chen, Jingguang G. 10.1002/adfm.201804762
import bibtexparser as bp from bibtexparser.bparser import BibTexParser from bibtexparser.customization import *
defcustomizations(record): """Use some functions delivered by the library :param record: a record :returns: -- customized record """ record = type(record) record = author(record) record = editor(record) record = journal(record) record = keyword(record) record = link(record) record = page_double_hyphen(record) record = doi(record) # record = month(record) return record
defauthor(record): """ Split author field into a list of "Name, Surname". :param record: the record. :type record: dict :returns: dict -- the modified record. """ if"author"in record: if record["author"]: record["author"] = getnames([i.strip() for i in record["author"].replace('\n', ' ').split(" and ")]) # getname又是一个复杂函数,处理姓名分段 else: del record["author"] return record
最后输出结果,在作者处不一样啦:
1 2
[u'Lee, Ji Hoon', u'Kattel, Shyam', u'Xie, Zhenhua', u'Tackett, Brian M.', u'Wang, Jiajun', u'Liu, Chang-Jun', u'Chen, Jingguang G.'] 10.1002/adfm.201804762
而原来的输出结果名字是不分开的(以下为默认输出结果,非自定义):
1 2
Lee, Ji Hoon and Kattel, Shyam and Xie, Zhenhua and Tackett, Brian M. and Wang, Jiajun and Liu, Chang-Jun and Chen, Jingguang G. 10.1002/adfm.201804762