User:Psephomancy/Sandbox: Difference between revisions

From electowiki
Content added Content deleted
No edit summary
 
(32 intermediate revisions by the same user not shown)
Line 1: Line 1:
=VisualEditor=
==VisualEditor==
VisualEditor works!
VisualEditor works!


References work!<ref>Doesn't have the automatic URL→reference generation of Wikipedia, though. :/</ref><references />
References work!<ref>Doesn't have the automatic URL→reference generation of Wikipedia, though. :/</ref><references />


= Graphs =
== Graphs ==
== Template ==
=== Template ===
{{Graph:Chart|width=100|height=100|type=pie|legend=Legende
{{Graph:Chart|width=100|height=100|type=pie|legend=Legende
|x=A,B,C,D,E,F,G,H,I|y1=100,200,150,300,100,100,150,50,200
|x=A,B,C,D,E,F,G,H,I|y1=100,200,150,300,100,100,150,50,200
Line 12: Line 12:
Needs templates added
Needs templates added


== Raw graph tag ==
=== Raw graph tag ===


Raw graphs work though:
Raw graphs work though:
Line 107: Line 107:




But not all of them:



<graph>
<graph>
Line 197: Line 197:
}
}
</graph>
</graph>
(But not all of them.)


== Interactive ==


<graph>
{
// We want to use Vega 2, and specify image size
"version": 2, "width": 300, "height": 80,
// Set padding to the same value on all sides
"padding": 12,
// By default the background is transparent
"background": "#edf1f7",


"signals": [
= Math =
{
"name": "isDragging",
"init": false,
"streams": [
{"type": "@handle:mousedown","expr": "true"},
{"type": "mouseup","expr": "false"}
]
},
{
"name": "scaledHandlePosition",
"streams": [
{
"type": "mousemove[isDragging]",
"expr": "eventX()",
"scale": {"name": "yearsScale","invert": true}
}
]
},
{
"name": "currentYear",
"init": 2000,
"expr": "clamp(parseInt(scaledHandlePosition),1960,2013)"
}
],

"scales": [
{
"name": "yearsScale",
"type": "linear",
"zero": false,
"domain": [1960, 2013],
"range": "width"
}
],

"marks": [
{
// draw the year label in the upper left corner
"name": "yearLabel",
"type": "text",
"properties": {
"enter": {
"x": {"value": 0},
"y": {"value": 25},
"fontSize": {"value": 32},
"fontWeight": {"value": "bold"},
"fill": {"value": "steelblue"}
},
"update": {"text": {"signal": "currentYear"} }
}
},
{
// Draw a horizontal line
"name": "scrollLine",
"type": "rule",
"properties": {
"enter": {
"x": {"value": 0},
"y": {"value": 40},
"x2": {"value": 300},
"stroke": {"value": "#000"},
"strokeWidth": {"value": 2}
}
}
},
{
// Draw a triangle shape with a hover effect
// naming objects allows us to reference them later
"name": "handle",
"type": "path",
"properties": {
"enter": {
"y": {"value": 40},
// path syntax is the same as SVG's path tag
"path": {"value": "m-5.5,-10l0,20l11.5,-10l-11.5,-10z"},
"stroke": {"value": "#880"},
"strokeWidth": {"value": 2.5}
},
"update": {
"x": {"scale": "yearsScale","signal": "currentYear"},
"fill": {"value": "#fff"}
},
// Change fill color of the object on mouse hover
"hover": {"fill": {"value": "#f00"} }
}
}
]
}
</graph>

== Math ==
<math>x^2+y^2=z^2</math>
<math>x^2+y^2=z^2</math>


works!
works!


except sometimes the image is lost and it displays <code><nowiki>'"`UNIQ--postMath-00000001-QINU`"' </nowiki></code> instead?
= Wikimedia Commons images =

<math>test = test ^2</math>

== Wikimedia Commons images ==
Some text

[[File:Cleome hassleriana NBG 2 LR.jpg|thumb|that works!]]
[[File:Cleome hassleriana NBG 2 LR.jpg|thumb|that works!]]


Some more text
= Interwiki links =

[[w:test]]
{{raw:w:clear}}

[[File:Cleome hassleriana NBG 2 LR.jpg|thumb|left|to the left]]

Some even more text

{{raw:w:clear|left}}

== Interwiki links ==
<code><nowiki>[[w:test]]</nowiki></code>

Blah blah [[w:test]] blah blah.

<code><nowiki>[[w:test|]]</nowiki></code>

Blah blah [[w:test|test]] blah blah.

<code><nowiki>{{wp|test}}</nowiki></code>

Blah blah {{wp|test}} blah blah.

<code><nowiki>[[wikt:test|]]</nowiki></code>

Blah blah [[wikt:test|test]] blah blah.

== Scary transclusion ==
=== From Wikipedia templates ===
<code><nowiki>{{w:Sample}}</nowiki></code>

{{w:Sample}}

----

<code><nowiki>{{raw:w:Sample}}</nowiki></code>

{{raw:w:Sample}}

----

<code><nowiki>{{raw:w:Graph:Chart|width=600|height=100|xAxisTitle=X|yAxisTitle=Y |type=rect|x=1,2,3,4,5,6,7,8|y=10,12,6,14,2,10,7,9}}</nowiki></code>

{{raw:w:Graph:Chart|width=600|height=100|xAxisTitle=X|yAxisTitle=Y |type=rect|x=1,2,3,4,5,6,7,8|y=10,12,6,14,2,10,7,9}}


=== From Wikipedia articles ===

<code><nowiki>{{w::Arulampalam}}</nowiki></code> (Links point at Wikipedia, like they would if this template were used there)

{{w::Arulampalam}}

----

<code><nowiki>{{raw:w::Arulampalam}}</nowiki></code> (Links point to local pages, as if the template had been imported here)

{{raw:w::Arulampalam}}

==== Local copy that transcludes from Wikipedia ====

<code><nowiki>{{Sample}}</nowiki></code>

{{Sample}}

==== Parameters work? ====

<code><nowiki>Some dubious text{{raw:w:dubious}}</nowiki></code>

Some dubious text{{raw:w:dubious}}

<code><nowiki>Some dubious text{{raw:w:dubious|Dubious assertion}}</nowiki></code>

Some dubious text{{raw:w:dubious|Dubious assertion}}

<code><nowiki>Some dubious text{{raw:w:dubious|Dubious assertion|reason=I don't believe you}}</nowiki></code>

Some dubious text{{raw:w:dubious|Dubious assertion|reason=I don't believe you}}

No, it gives:

: Script error: No such module "Unsubst".

But I could import that module?

=== From Miraheze Template Wiki ===

<code><nowiki>{{raw:templatewiki:Neutral}}</nowiki></code>

{{raw:templatewiki:Neutral}}

----

<code><nowiki>{{raw:templatewiki:flags|uk}}</nowiki></code>

{{raw:templatewiki:flags|uk}}

----

Doesn't work:

<code><nowiki>{{raw:templatewiki:Cite book}}</nowiki></code>

{{raw:templatewiki:Cite book}}

==== Local copy that transcludes from Miraheze Template Wiki ====

<code><nowiki>{{Neutral}}</nowiki></code>

{{Neutral}}


== Argh ==
{{raw:w:CIA}}

== YouTube ==

Can embed YouTube videos!

<youtube>JtKAScORevQ</youtube>

<youtube>orybDrUj4vA</youtube>

== Metadata ==
Is cached and not updated until I edit page?

== Image annotations ==

"The gadget will work for files uploaded locally on your Wiki exactly as it does for files here at the Commons."

[[File:Voting system Euler diagram.svg|500px]]

"For non-local files (files hosted here at the Commons, but viewed on your Wiki), the script will enable viewing of the notes (if there are any), but will not allow modifying them."

[[File:Chicago.jpg|500px]]

== Automatic category lists ==
Using [[mw:Extension:DynamicPageList3]]
=== (old?) DynamicPageList format ===

Cardinal voting methods:
<DynamicPageList>
category = Cardinal voting methods
</DynamicPageList>

Proportional cardinal voting methods:
<DynamicPageList>
category = Cardinal voting methods
category = Proportional voting methods
</DynamicPageList>

=== (new?) DPL format ===

Cardinal voting methods:
<DPL>
category = Cardinal voting methods
</DPL>


Cardinal voting methods (including sub-categories of Approval methods:
<DPL>
category = **Cardinal voting methods
</DPL>

Only two layers deep are supported, though. :/


Proportional cardinal voting methods:
<DPL>
category = Cardinal voting methods
category = Proportional voting methods
</DPL>

Proportional cardinal voting methods (including subcats):
<pre><DPL>
category = **Cardinal voting methods
category = **Proportional voting methods
</DPL>></pre>

<DPL>
category = **Cardinal voting methods
category = **Proportional voting methods
</DPL>

== Templates ==

Text that needs a reference.{{cite arXiv |last= |first= |author-link= |eprint=1008.1501 |title= |class= |date= }}

Cows are vegetables.{{dubious}}

Cows agitate.{{clarify}}

Some say cows are non-corporeal.{{who}}

== Citer test ==
Citer: https://tools.wmflabs.org/citer/citer.fcgi?input_type=url-doi-isbn&user_input=+10.1007%2F978-3-642-20441-8&dateformat=%25Y-%25m-%25d

Some stuff<ref name="Electoral Systems 2012 p.">{{cite book | editor-last=Felsenthal | editor-first=Dan S. | editor-last2=Machover | editor-first2=Moshé | title=Studies in Choice and Welfare | chapter=Electoral Systems | publisher=Springer Berlin Heidelberg | publication-place=Berlin, Heidelberg | year=2012 | isbn=978-3-642-20440-1 | issn=1614-0311 | doi=10.1007/978-3-642-20441-8 | page=}}</ref>

=== References ===
<references/>

== Citoid test ==
PMID<ref>{{Cite journal|last=Lee|first=J.|last2=Hahn|first2=S.|last3=Kim|first3=D.-W.|last4=Kim|first4=J.|last5=Kang|first5=S. N.|last6=Rha|first6=S. Y.|last7=Lee|first7=K. B.|last8=Kang|first8=J.-H.|last9=Park|first9=B.-J.|date=2013-01-15|title=Evaluation of survival benefits by platinums and taxanes for an unfavourable subset of carcinoma of unknown primary: a systematic review and meta-analysis|url=https://www.ncbi.nlm.nih.gov/pubmed/23175147|journal=British Journal of Cancer|volume=108|issue=1|pages=39–48|doi=10.1038/bjc.2012.516|issn=1532-1827|pmc=3553519|pmid=23175147}}</ref>

PMC<ref>{{Cite journal|last=Lee|first=J|last2=Hahn|first2=S|last3=Kim|first3=D-W|last4=Kim|first4=J|last5=Kang|first5=S N|last6=Rha|first6=S Y|last7=Lee|first7=K B|last8=Kang|first8=J-H|last9=Park|first9=B-J|date=2013-01-15|title=Evaluation of survival benefits by platinums and taxanes for an unfavourable subset of carcinoma of unknown primary: a systematic review and meta-analysis|url=https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3553519/|journal=British Journal of Cancer|volume=108|issue=1|pages=39–48|doi=10.1038/bjc.2012.516|issn=0007-0920|pmc=3553519|pmid=23175147}}</ref>


ISSN<ref>{{Cite journal|last=Lindheimer|first=M. D.|date=1975-11|title=Hypertension in pregnancy: an invitational symposium|url=https://www.ncbi.nlm.nih.gov/pubmed/1532|journal=The Journal of Reproductive Medicine|volume=15|issue=5|pages=171–172|issn=0024-7758|pmid=1532}}</ref>
[[w:test|test]]


=== References ===
{{wp:test}}
<references/>

Latest revision as of 03:48, 19 February 2020

VisualEditor

VisualEditor works!

References work![1]

  1. Doesn't have the automatic URL→reference generation of Wikipedia, though. :/

Graphs

Template

<graph>{"legends":[{"properties":{"legend":{"y":{"value":-100}}},"stroke":"color","title":"Legende","fill":"color"}],"scales":[{"domain":{"data":"chart","field":"x"},"type":"ordinal","name":"color","range":"category10"},{"range":[0,100],"type":"linear","name":"r","domain":{"data":"chart","field":"r"}}],"version":2,"marks":[{"type":"arc","properties":{"hover":{"fill":{"value":"red"}},"update":{"fill":{"scale":"color","field":"x"}},"enter":{"endAngle":{"field":"layout_end"},"innerRadius":{"value":0},"outerRadius":{"scale":"r","field":"r"},"startAngle":{"field":"layout_start"},"stroke":{"value":"white"},"fill":{"scale":"color","field":"x"},"strokeWidth":{"value":1}}},"from":{"data":"chart","transform":[{"type":"pie","field":"y"}]}},{"type":"text","properties":{"enter":{"theta":{"field":"layout_mid"},"baseline":{"value":"top"},"align":{"value":"center"},"text":{"field":"y"},"y":{"group":"height","mult":0.5},"x":{"group":"width","mult":0.5},"fontSize":{"value":10},"angle":{"mult":57.29577951308232,"field":"layout_mid"},"radius":{"scale":"r","offset":-4,"field":"r"},"fill":{"value":"white"}}},"from":{"data":"chart","transform":[{"field":"y","type":"pie"}]}}],"height":100,"axes":[],"data":[{"format":{"parse":{"y":"integer","x":"string","r":"integer"},"type":"json"},"name":"chart","values":[{"y":100,"x":"A","r":7},{"y":200,"x":"B","r":8},{"y":150,"x":"C","r":9},{"y":300,"x":"D","r":8},{"y":100,"x":"E","r":8},{"y":100,"x":"F","r":9},{"y":150,"x":"G","r":10},{"y":50,"x":"H","r":9},{"y":200,"x":"I","r":5}]}],"width":100}</graph>

Needs templates added

Raw graph tag

Raw graphs work though:

<graph> {

 "width": 500,
 "height": 50,
 "data": [
   {
     "name": "tree",
     "values": [
       {"A": "Mammal","B": "Herbivore","C": "Cow" },
       {"A": "Mammal","B": "Herbivore","C": "Goat" },
       {"A": "Mammal","B": "Omnivore","C": "Human"},
       {"A": "Mammal","B": "Omnivore","C": "Bat"},
       {"A": "Fish","B": "Carnivore","C": "Shark"},
       {"A": "Fish","B": "Carnivore","C": "Electric Eel"},
       {"A": "Fish","B": "Omnivore","C": "Piranha "},
       {"A": "Fish","B": "Omnivore","C": "catfish "}
     ],
     "transform": [
       {"type": "treeify","groupby": ["A","B"]},
       {
         "type": "hierarchy",
         "mode": "cluster",
         "nodesize": [11,200]
       },
       {
         "type": "formula",
         "field": "align",
         "expr": "datum.children ? 'right' : 'left'"
       },
       {
         "type": "formula",
         "field": "offset",
         "expr": "datum.children ? -5 : 5"
       }
     ]
   }
 ],
 "marks": [
   {
     "type": "path",
     "from": {
       "data": "tree",
       "transform": [
         {"type": "filter","test": "datum.parent"},
         {
           "type": "linkpath",
           "sourceX": "parent.layout_y",
           "sourceY": "parent.layout_x",
           "targetX": "layout_y",
           "targetY": "layout_x",
           "shape": "cornerX"
         }
       ]
     },
     "properties": {
       "enter": {
         "path": {"field": "layout_path"},
         "stroke": {"value": "#ddd"}
       }
     }
   },
   {
     "type": "text",
     "from": {
       "data": "tree",
       "transform": [
         {
           "type": "formula",
           "field": "ff_node_label",
           "expr": "if(datum.layout_depth == 0, 'Animals', if(datum.layout_depth == 1, datum.A, if(datum.layout_depth == 2, datum.B, if(datum.layout_depth == 3, datum.C, ))))"
         }
       ]
     },
     "properties": {
       "enter": {
         "x": {"field": "layout_y"},
         "dx": {"field": "offset"},
         "y": {"field": "layout_x"},
         "font": {"value": "Helvetica Neue"},
         "fontSize": {"value": 10},
         "align": {"field": "align"},
         "baseline": {"value": "middle"},
         "fill": {"value": "#000"},
         "text": {"field": "ff_node_label"}
       }
     }
   }
 ]

}</graph>


But not all of them:

<graph> {

 "$schema": "https://vega.github.io/schema/vega/v4.json",
 "width": 200,
 "height": 200,
 "autosize": "none",
 "signals": [
   {
     "name": "startAngle", "value": 0,
     "bind": {"input": "range", "min": 0, "max": 6.29, "step": 0.01}
   },
   {
     "name": "endAngle", "value": 6.29,
     "bind": {"input": "range", "min": 0, "max": 6.29, "step": 0.01}
   },
   {
     "name": "padAngle", "value": 0,
     "bind": {"input": "range", "min": 0, "max": 0.1}
   },
   {
     "name": "innerRadius", "value": 0,
     "bind": {"input": "range", "min": 0, "max": 90, "step": 1}
   },
   {
     "name": "cornerRadius", "value": 0,
     "bind": {"input": "range", "min": 0, "max": 10, "step": 0.5}
   },
   {
     "name": "sort", "value": false,
     "bind": {"input": "checkbox"}
   }
 ],
 "data": [
   {
     "name": "table",
     "values": [
       {"id": 1, "field": 4},
       {"id": 2, "field": 6},
       {"id": 3, "field": 10},
       {"id": 4, "field": 3},
       {"id": 5, "field": 7},
       {"id": 6, "field": 8}
     ],
     "transform": [
       {
         "type": "pie",
         "field": "field",
         "startAngle": {"signal": "startAngle"},
         "endAngle": {"signal": "endAngle"},
         "sort": {"signal": "sort"}
       }
     ]
   }
 ],
 "scales": [
   {
     "name": "color",
     "type": "ordinal",
     "range": {"scheme": "category20"}
   }
 ],
 "marks": [
   {
     "type": "arc",
     "from": {"data": "table"},
     "encode": {
       "enter": {
         "fill": {"scale": "color", "field": "id"},
         "x": {"signal": "width / 2"},
         "y": {"signal": "height / 2"}
       },
       "update": {
         "startAngle": {"field": "startAngle"},
         "endAngle": {"field": "endAngle"},
         "padAngle": {"signal": "padAngle"},
         "innerRadius": {"signal": "innerRadius"},
         "outerRadius": {"signal": "width / 2"},
         "cornerRadius": {"signal": "cornerRadius"}
       }
     }
   }
 ]

} </graph>

Interactive

<graph> {

 // We want to use Vega 2, and specify image size
 "version": 2, "width": 300, "height": 80,
 // Set padding to the same value on all sides
 "padding": 12,
 // By default the background is transparent
 "background": "#edf1f7",
 "signals": [
   {
     "name": "isDragging",
     "init": false,
     "streams": [
       {"type": "@handle:mousedown","expr": "true"},
       {"type": "mouseup","expr": "false"}
     ]
   },
   {
     "name": "scaledHandlePosition",
     "streams": [
       {
         "type": "mousemove[isDragging]",
         "expr": "eventX()",
         "scale": {"name": "yearsScale","invert": true}
       }
     ]
   },
   {
     "name": "currentYear",
     "init": 2000,
     "expr": "clamp(parseInt(scaledHandlePosition),1960,2013)"
   }
 ],
 "scales": [
   {
     "name": "yearsScale",
     "type": "linear",
     "zero": false,
     "domain": [1960, 2013],
     "range": "width"
   }
 ],
 "marks": [
   {
     // draw the year label in the upper left corner
     "name": "yearLabel",
     "type": "text",
     "properties": {
       "enter": {
         "x": {"value": 0},
         "y": {"value": 25},
         "fontSize": {"value": 32},
         "fontWeight": {"value": "bold"},
         "fill": {"value": "steelblue"}
       },
       "update": {"text": {"signal": "currentYear"} }
     }
   },
   {
     // Draw a horizontal line
     "name": "scrollLine",
     "type": "rule",
     "properties": {
       "enter": {
         "x": {"value": 0},
         "y": {"value": 40},
         "x2": {"value": 300},
         "stroke": {"value": "#000"},
         "strokeWidth": {"value": 2}
       }
     }
   },
   {
     // Draw a triangle shape with a hover effect
     // naming objects allows us to reference them later
     "name": "handle",
     "type": "path",
     "properties": {
       "enter": {
         "y": {"value": 40},
         // path syntax is the same as SVG's path tag
         "path": {"value": "m-5.5,-10l0,20l11.5,-10l-11.5,-10z"},
         "stroke": {"value": "#880"},
         "strokeWidth": {"value": 2.5}
       },
       "update": {
         "x": {"scale": "yearsScale","signal": "currentYear"},
         "fill": {"value": "#fff"}
       },
       // Change fill color of the object on mouse hover
       "hover": {"fill": {"value": "#f00"} }
     }
   }
 ]

} </graph>

Math

works!

except sometimes the image is lost and it displays ?'"`UNIQ--postMath-00000001-QINU`"'? instead?

Wikimedia Commons images

Some text

that works!

Some more text

[Interwiki transcluding is disabled]

to the left

Some even more text

[Interwiki transcluding is disabled]

Interwiki links

[[w:test]]

Blah blah w:test blah blah.

[[w:test|]]

Blah blah test blah blah.

{{wp|test}}

Blah blah test on Wikipedia

blah blah.

[[wikt:test|]]

Blah blah test blah blah.

Scary transclusion

From Wikipedia templates

{{w:Sample}}

[Interwiki transcluding is disabled]


{{raw:w:Sample}}

[Interwiki transcluding is disabled]


{{raw:w:Graph:Chart|width=600|height=100|xAxisTitle=X|yAxisTitle=Y |type=rect|x=1,2,3,4,5,6,7,8|y=10,12,6,14,2,10,7,9}}

[Interwiki transcluding is disabled]


From Wikipedia articles

{{w::Arulampalam}} (Links point at Wikipedia, like they would if this template were used there)

[Interwiki transcluding is disabled]


{{raw:w::Arulampalam}} (Links point to local pages, as if the template had been imported here)

[Interwiki transcluding is disabled]

Local copy that transcludes from Wikipedia

{{Sample}}

[Interwiki transcluding is disabled]

Parameters work?

Some dubious text{{raw:w:dubious}}

Some dubious text[Interwiki transcluding is disabled]

Some dubious text{{raw:w:dubious|Dubious assertion}}

Some dubious text[Interwiki transcluding is disabled]

Some dubious text{{raw:w:dubious|Dubious assertion|reason=I don't believe you}}

Some dubious text[Interwiki transcluding is disabled]

No, it gives:

Script error: No such module "Unsubst".

But I could import that module?

From Miraheze Template Wiki

{{raw:templatewiki:Neutral}}

[Interwiki transcluding is disabled]


{{raw:templatewiki:flags|uk}}

[Interwiki transcluding is disabled]


Doesn't work:

{{raw:templatewiki:Cite book}}

[Interwiki transcluding is disabled]

Local copy that transcludes from Miraheze Template Wiki

{{Neutral}}

[Interwiki transcluding is disabled]


Argh

[Interwiki transcluding is disabled]

YouTube

Can embed YouTube videos!

Metadata

Is cached and not updated until I edit page?

Image annotations

"The gadget will work for files uploaded locally on your Wiki exactly as it does for files here at the Commons."

"For non-local files (files hosted here at the Commons, but viewed on your Wiki), the script will enable viewing of the notes (if there are any), but will not allow modifying them."

Automatic category lists

Using mw:Extension:DynamicPageList3

(old?) DynamicPageList format

Cardinal voting methods:

Proportional cardinal voting methods:

(new?) DPL format

Cardinal voting methods:


Cardinal voting methods (including sub-categories of Approval methods:

Extension:DynamicPageList3 (DPL3), version 3.5.3: Error: Too many categories! Maximum: 4. Help: increase $wgDplSettings['maxCategoryCount'] to specify more categories or set $wgDplSettings['allowUnlimitedCategories'] = true; for no limitation. (Set the variable in the wiki's LocalSettings.php configuration file.)

Only two layers deep are supported, though. :/


Proportional cardinal voting methods:

Proportional cardinal voting methods (including subcats):

<DPL>
  category = **Cardinal voting methods
  category = **Proportional voting methods
</DPL>>

Extension:DynamicPageList3 (DPL3), version 3.5.3: Error: Too many categories! Maximum: 4. Help: increase $wgDplSettings['maxCategoryCount'] to specify more categories or set $wgDplSettings['allowUnlimitedCategories'] = true; for no limitation. (Set the variable in the wiki's LocalSettings.php configuration file.)

Templates

Text that needs a reference.A bot will complete this citation soon. Click here to jump the queue arXiv:1008.1501.

Cows are vegetables.[dubious ]

Cows agitate.[clarification needed]

Some say cows are non-corporeal.[who?]

Citer test

Citer: https://tools.wmflabs.org/citer/citer.fcgi?input_type=url-doi-isbn&user_input=+10.1007%2F978-3-642-20441-8&dateformat=%25Y-%25m-%25d

Some stuff[1]

References

  1. Felsenthal, Dan S.; Machover, Moshé, eds. (2012). "Electoral Systems". Studies in Choice and Welfare. Berlin, Heidelberg: Springer Berlin Heidelberg. doi:10.1007/978-3-642-20441-8. ISBN 978-3-642-20440-1. ISSN 1614-0311.

Citoid test

PMID[1]

PMC[2]

ISSN[3]

References

  1. Lee, J.; Hahn, S.; Kim, D.-W.; Kim, J.; Kang, S. N.; Rha, S. Y.; Lee, K. B.; Kang, J.-H.; Park, B.-J. (2013-01-15). "Evaluation of survival benefits by platinums and taxanes for an unfavourable subset of carcinoma of unknown primary: a systematic review and meta-analysis". British Journal of Cancer. 108 (1): 39–48. doi:10.1038/bjc.2012.516. ISSN 1532-1827. PMC 3553519. PMID 23175147.
  2. Lee, J; Hahn, S; Kim, D-W; Kim, J; Kang, S N; Rha, S Y; Lee, K B; Kang, J-H; Park, B-J (2013-01-15). "Evaluation of survival benefits by platinums and taxanes for an unfavourable subset of carcinoma of unknown primary: a systematic review and meta-analysis". British Journal of Cancer. 108 (1): 39–48. doi:10.1038/bjc.2012.516. ISSN 0007-0920. PMC 3553519. PMID 23175147.
  3. Lindheimer, M. D. (1975-11). "Hypertension in pregnancy: an invitational symposium". The Journal of Reproductive Medicine. 15 (5): 171–172. ISSN 0024-7758. PMID 1532. Check date values in: |date= (help)