Difference between revisions of "Writing this guide"
From E-Consultation Guide
(→Extensions) |
|||
(12 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | __NOTOC__ | ||
+ | [[Image:Letterkenny_brainstorming_guide.jpg|right|thumb|thinking what to say]] | ||
+ | [[Image:Letterkenny_guide_design.jpg|right|thumb|planning the guide]] | ||
This guide is being written by members of the E-Consultation Research Project and others. | This guide is being written by members of the E-Consultation Research Project and others. | ||
Line 11: | Line 14: | ||
We've added two extensions to this intallation of MediaWiki | We've added two extensions to this intallation of MediaWiki | ||
− | + | ===The [http://meta.wikimedia.org/wiki/Cite/Cite.php Cite] extension=== | |
− | + | to handle [http://meta.wikimedia.org/wiki/Help:Footnotes footnotes]. E.g. | |
− | + | ||
− | + | There are various papers suggesting the potential of e-consultation.<ref>[http://www.e-consultation.org/wikindx3/index.php?action=resourceView&id=4 Morison and Newman 2001]</ref> | |
− | + | ||
− | + | This lets you put the reference details into footnotes, so the flow of the guide isn't disturbed. Also note how the reference is linked to the full bibliographic details in Wikindx on this site. Always put references into http://www.e-consultation.org/wikindx3/ . | |
− | + | ||
+ | ===A graphviz extension=== | ||
+ | <div style="padding-left:0.5in; float:right;"><graphviz>digraph G { | ||
+ | size = "1.5,1.5"; | ||
+ | A -> B [label = "part-of"]; | ||
+ | }</graphviz></div> | ||
+ | |||
+ | to produce graphs from lists of linked nodes. E.g. | ||
+ | |||
+ | <graphviz>digraph G { | ||
+ | size = "1.5,1.5"; | ||
+ | A -> B [label = "part of"]; | ||
+ | }</graphviz> | ||
+ | |||
+ | will be displayed as shown on the right. | ||
+ | |||
+ | *[http://www.wickle.com/wikis/index.php/Graphviz_extension Documentation on the original graphviz extension] | ||
+ | *[http://wiki.case.edu/CaseWiki:Graphviz_extension the one we are using] | ||
+ | *[http://www.graphviz.org/ the main Graphviz site] | ||
+ | **[http://www.graphviz.org/Documentation/dotguide.pdf the user guide to dot], a graphviz layout program that takes a list of things like A -> B and generates a graph from it. | ||
+ | *[http://www.linuxjournal.com/article/7275 a Graphviz tutorial] in Linux Journal | ||
+ | *[http://www.linuxdevcenter.com/pub/a/linux/2004/05/06/graphviz_dot.html a simpler tutorial] | ||
+ | |||
+ | <br clear="all" /> | ||
+ | |||
+ | ==Footnotes== | ||
+ | <references/> |
Latest revision as of 14:05, 23 November 2006
This guide is being written by members of the E-Consultation Research Project and others.
Here is some help for those writing the guide.
- This is an installation of MediaWiki.
- Basic help on editing is at Help:Editing
- Fuller details are at mediaWiki's Guide: Editing Overview
Extensions
We've added two extensions to this intallation of MediaWiki
The Cite extension
to handle footnotes. E.g.
There are various papers suggesting the potential of e-consultation.[1]
This lets you put the reference details into footnotes, so the flow of the guide isn't disturbed. Also note how the reference is linked to the full bibliographic details in Wikindx on this site. Always put references into http://www.e-consultation.org/wikindx3/ .
A graphviz extension
Graph image creation requires permission to upload.
to produce graphs from lists of linked nodes. E.g.
<graphviz>digraph G { size = "1.5,1.5"; A -> B [label = "part of"]; }</graphviz>
will be displayed as shown on the right.
- Documentation on the original graphviz extension
- the one we are using
- the main Graphviz site
- the user guide to dot, a graphviz layout program that takes a list of things like A -> B and generates a graph from it.
- a Graphviz tutorial in Linux Journal
- a simpler tutorial