zotero / translators

Zotero Translators
http://www.zotero.org/support/dev/translators
1.31k stars 765 forks source link

Wikipedia Citation Templates.js #2837

Open pixiandouban opened 2 years ago

pixiandouban commented 2 years ago

In Wikipedia, Template:Cite paper is redirected to Template:cite journal, Template Cite thesis should be used when citing a thesis.

https://github.com/zotero/translators/blob/b337cd542a335819fc0dc0db70ee3c34daad2a2d/Wikipedia%20Citation%20Templates.js#L59

The js file lacks |degree= part which indicates whether the paper is a master thesis or a doctor thesis.

This snippet can be added before "cite web"

if (type == "Cite thesis"){
    properties.degree = item.type;
}

https://github.com/zotero/translators/blob/b337cd542a335819fc0dc0db70ee3c34daad2a2d/Wikipedia%20Citation%20Templates.js#L280-L282

pixiandouban commented 2 years ago

Cite magazine should be used here like Wikipedia template. https://github.com/zotero/translators/blob/b337cd542a335819fc0dc0db70ee3c34daad2a2d/Wikipedia%20Citation%20Templates.js#L57

doubanchan commented 10 months ago

'language' field is missed, which can be added in the "fieldmap". language: "language" https://github.com/zotero/translators/blob/b337cd542a335819fc0dc0db70ee3c34daad2a2d/Wikipedia%20Citation%20Templates.js#L50