Content deleted Content added
Adamant.pwn (talk | contribs) transferred simple parameters |
Adamant.pwn (talk | contribs) No edit summary |
||
Line 195:
citeseerx = {id="P3784", maxvals=1},
osti = {id="P3894", maxvals=1},
biorxiv = {id="P3951", maxvals=1},
isbn = {id="P212", maxvals=1}, -- ISBN 13
illustrator = {id="P110", maxvals=0}, -- goes to "others" section
chapter = {id="P792", maxvals=1},
date = {id="P577", maxvals=1},
series = {id="P179", maxvals=1},
volume = {id="P478", maxvals=1},
title = {id="P1476", maxvals=1},
url = {id="P953", maxvals=1} -- full work available at
}
Line 206 ⟶ 214:
citeq_args.biorxiv = "10.1101/" .. citeq_args.biorxiv
end
if citeq_args.illustrator and not citeq_args.others then
citeq_args.others = "Illustrator: " .. citeq_args.illustrator
citeq_args.illustrator = nil
end
citeq_args.isbn = getValue( {"P957", ps = 1, qid = citeq_args.qid, maxvals=0, citeq_args.isbn } ) -- try ISBN 10
citeq_args.url = getValue( {"P856", ps = 1, qid = citeq_args.qid, maxvals=0, citeq_args.url } ) -- try official website
citeq_args.url = getValue( {"P2699", ps = 1, qid = citeq_args.qid, maxvals=0, citeq_args.url } ) -- try url
for k, v in pairs(citeq_args) do
|