translators icon indicating copy to clipboard operation
translators copied to clipboard

Wikipedia Citation Templates.js

Open pixiandouban opened this issue 2 years ago • 2 comments

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 avatar Jun 17 '22 20:06 pixiandouban

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

pixiandouban avatar Oct 30 '22 14:10 pixiandouban

'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

doubanchan avatar Jan 24 '24 16:01 doubanchan