<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.tei-c.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mandellc</id>
	<title>TEIWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.tei-c.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mandellc"/>
	<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Special:Contributions/Mandellc"/>
	<updated>2026-04-23T01:33:52Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.32.0</generator>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Category:Tools/ZoteroToTEI&amp;diff=7295</id>
		<title>Category:Tools/ZoteroToTEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Category:Tools/ZoteroToTEI&amp;diff=7295"/>
		<updated>2010-02-26T21:34:48Z</updated>

		<summary type="html">&lt;p&gt;Mandellc: xslt for transforming Zotero RDF to TEI &amp;lt;listBibl&amp;gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tools]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Publishing and delivery tools]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
&lt;br /&gt;
This is an XSLT stylesheet to transform RDF/XML into TEI bibls&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== User commentary ==&lt;br /&gt;
'''Please sign all comments.'''&lt;br /&gt;
(please leave the above note about signing comments, and add signed comments here below it)&lt;br /&gt;
&lt;br /&gt;
== System requirements ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Source code and licensing ==&lt;br /&gt;
Source code is included at the bottom of this article&lt;br /&gt;
&lt;br /&gt;
== Language(s) ==&lt;br /&gt;
[[XSLT]]&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
== Tech support ==&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Here follows a Zotero to TEI XSLT, a simple one, that takes Zotero exported RDF and turns it into a listBibl with biblStruct.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;xsl:stylesheet xmlns:xsl=&amp;quot;http://www.w3.org/1999/XSL/Transform&amp;quot; xmlns:xs=&amp;quot;http://www.w3.org/2001/XMLSchema&amp;quot;&lt;br /&gt;
	xmlns:rdf=&amp;quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;quot; xmlns:tei=&amp;quot;http://www.tei-c.org/ns/1.0&amp;quot; xmlns:dc=&amp;quot;http://purl.org/dc/elements/1.1/&amp;quot;&lt;br /&gt;
	xmlns:vcard=&amp;quot;http://nwalsh.com/rdf/vCard#&amp;quot; xmlns:foaf=&amp;quot;http://xmlns.com/foaf/0.1/&amp;quot; xmlns:z=&amp;quot;http://www.zotero.org/namespaces/export#&amp;quot;&lt;br /&gt;
	xmlns:dcterms=&amp;quot;http://purl.org/dc/terms/&amp;quot; xmlns:bib=&amp;quot;http://purl.org/net/biblio#&amp;quot; xmlns:link=&amp;quot;http://purl.org/rss/1.0/modules/link/&amp;quot;&lt;br /&gt;
	xmlns:prism=&amp;quot;http://prismstandard.org/namespaces/1.2/basic/&amp;quot; exclude-result-prefixes=&amp;quot;xs rdf tei dc vcard foaf z dcterms bib link prism&amp;quot;&lt;br /&gt;
	version=&amp;quot;2.0&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;xsl:output method=&amp;quot;xml&amp;quot; escape-uri-attributes=&amp;quot;yes&amp;quot; indent=&amp;quot;yes&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;xsl:template match=&amp;quot;/rdf:RDF&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;listBibl&amp;gt;&lt;br /&gt;
			&amp;lt;head&amp;gt;Works Cited&amp;lt;/head&amp;gt;&lt;br /&gt;
			&amp;lt;xsl:apply-templates/&amp;gt;&lt;br /&gt;
		&amp;lt;/listBibl&amp;gt;&lt;br /&gt;
	&amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;xsl:template match=&amp;quot;bib:Memo&amp;quot;/&amp;gt;&lt;br /&gt;
	&amp;lt;xsl:template match=&amp;quot;z:Attachment&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;xsl:template match=&amp;quot;bib:Book&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;biblStruct&amp;gt;&lt;br /&gt;
			&amp;lt;monogr&amp;gt;&lt;br /&gt;
				&amp;lt;title&amp;gt;&lt;br /&gt;
					&amp;lt;xsl:value-of select=&amp;quot;dc:title&amp;quot;/&amp;gt;&lt;br /&gt;
				&amp;lt;/title&amp;gt;&lt;br /&gt;
				&amp;lt;xsl:call-template name=&amp;quot;author&amp;quot;/&amp;gt;&lt;br /&gt;
				&amp;lt;imprint&amp;gt;&lt;br /&gt;
					&amp;lt;publisher&amp;gt;&lt;br /&gt;
						&amp;lt;xsl:value-of select=&amp;quot;dc:publisher/foaf:Organization/foaf:name&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/publisher&amp;gt;&lt;br /&gt;
					&amp;lt;date&amp;gt;&lt;br /&gt;
						&amp;lt;xsl:choose&amp;gt;&lt;br /&gt;
							&amp;lt;xsl:when test=&amp;quot;contains(dc:date, '-')&amp;quot;&amp;gt;&lt;br /&gt;
								&amp;lt;xsl:value-of select=&amp;quot;substring-before(dc:date, '-')&amp;quot;/&amp;gt;&lt;br /&gt;
							&amp;lt;/xsl:when&amp;gt;&lt;br /&gt;
							&amp;lt;xsl:otherwise&amp;gt;&lt;br /&gt;
								&amp;lt;xsl:value-of select=&amp;quot;dc:date&amp;quot;/&amp;gt;&lt;br /&gt;
							&amp;lt;/xsl:otherwise&amp;gt;&lt;br /&gt;
						&amp;lt;/xsl:choose&amp;gt;&lt;br /&gt;
					&amp;lt;/date&amp;gt;&lt;br /&gt;
				&amp;lt;/imprint&amp;gt;&lt;br /&gt;
			&amp;lt;/monogr&amp;gt;&lt;br /&gt;
		&amp;lt;/biblStruct&amp;gt;&lt;br /&gt;
	&amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;xsl:template match=&amp;quot;rdf:li&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;author&amp;gt;&lt;br /&gt;
			&amp;lt;persName&amp;gt;&lt;br /&gt;
				&amp;lt;forename&amp;gt;&lt;br /&gt;
					&amp;lt;xsl:value-of select=&amp;quot;foaf:Person/foaf:givenname&amp;quot;/&amp;gt;&lt;br /&gt;
				&amp;lt;/forename&amp;gt;&lt;br /&gt;
				&amp;lt;surname&amp;gt;&lt;br /&gt;
					&amp;lt;xsl:value-of select=&amp;quot;foaf:Person/foaf:surname&amp;quot;/&amp;gt;&lt;br /&gt;
				&amp;lt;/surname&amp;gt;&lt;br /&gt;
			&amp;lt;/persName&amp;gt;&lt;br /&gt;
		&amp;lt;/author&amp;gt;&lt;br /&gt;
	&amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;xsl:template match=&amp;quot;bib:Article&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;biblStruct&amp;gt;&lt;br /&gt;
			&amp;lt;analytic&amp;gt;&lt;br /&gt;
				&amp;lt;title&amp;gt;&amp;lt;xsl:value-of select=&amp;quot;dc:title&amp;quot;/&amp;gt;&amp;lt;/title&amp;gt;&lt;br /&gt;
				&amp;lt;xsl:call-template name=&amp;quot;author&amp;quot;/&amp;gt;&lt;br /&gt;
			&amp;lt;/analytic&amp;gt;&lt;br /&gt;
			&amp;lt;monogr&amp;gt;&lt;br /&gt;
				&amp;lt;title&amp;gt;&lt;br /&gt;
					&amp;lt;xsl:value-of select=&amp;quot;following-sibling::bib:Journal[1]/dc:title&amp;quot;/&amp;gt;&lt;br /&gt;
				&amp;lt;/title&amp;gt;&lt;br /&gt;
				&amp;lt;imprint&amp;gt;&lt;br /&gt;
					&amp;lt;date&amp;gt;&amp;lt;xsl:value-of select=&amp;quot;dc:date&amp;quot;/&amp;gt;&amp;lt;/date&amp;gt;&lt;br /&gt;
					&amp;lt;biblScope type=&amp;quot;vol&amp;quot;&amp;gt;&amp;lt;xsl:value-of select=&amp;quot;following-sibling::bib:Journal[1]/prism:volume&amp;quot;/&amp;gt;&amp;lt;/biblScope&amp;gt;&lt;br /&gt;
					&amp;lt;biblScope type=&amp;quot;issue&amp;quot;&amp;gt;&amp;lt;xsl:value-of select=&amp;quot;following-sibling::bib:Journal[1]/prism:number&amp;quot;/&amp;gt;&amp;lt;/biblScope&amp;gt;&lt;br /&gt;
					&amp;lt;biblScope type=&amp;quot;pp&amp;quot;&amp;gt;&amp;lt;xsl:value-of select=&amp;quot;bib:pages&amp;quot;/&amp;gt;&amp;lt;/biblScope&amp;gt;&lt;br /&gt;
				&amp;lt;/imprint&amp;gt;&lt;br /&gt;
			&amp;lt;/monogr&amp;gt;&lt;br /&gt;
		&amp;lt;/biblStruct&amp;gt;&lt;br /&gt;
	&amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;xsl:template match=&amp;quot;bib:Journal&amp;quot;/&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
	&amp;lt;xsl:template match=&amp;quot;bib:Document&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;xsl:template match=&amp;quot;rdf:Description&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;xsl:choose&amp;gt;&lt;br /&gt;
			&amp;lt;xsl:when test=&amp;quot;z:itemType = 'conferencePaper'&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;biblStruct&amp;gt;&lt;br /&gt;
					&amp;lt;analytic&amp;gt;&lt;br /&gt;
						&amp;lt;title&amp;gt;&lt;br /&gt;
							&amp;lt;xsl:value-of select=&amp;quot;dc:title&amp;quot;/&amp;gt;&lt;br /&gt;
						&amp;lt;/title&amp;gt;&lt;br /&gt;
						&amp;lt;xsl:call-template name=&amp;quot;author&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/analytic&amp;gt;&lt;br /&gt;
				&amp;lt;/biblStruct&amp;gt;&lt;br /&gt;
			&amp;lt;/xsl:when&amp;gt;&lt;br /&gt;
			&amp;lt;!-- add outputs for other kinds of objects you collect --&amp;gt;&lt;br /&gt;
		&amp;lt;/xsl:choose&amp;gt;&lt;br /&gt;
	&amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;xsl:template match=&amp;quot;z:Collection&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;xsl:template name=&amp;quot;author&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;xsl:apply-templates select=&amp;quot;bib:authors/rdf:Seq/rdf:li&amp;quot;/&amp;gt;&lt;br /&gt;
	&amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/xsl:stylesheet&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mandellc</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Category:Tools/ZoteroToTEI&amp;diff=7291</id>
		<title>Category:Tools/ZoteroToTEI</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Category:Tools/ZoteroToTEI&amp;diff=7291"/>
		<updated>2010-02-26T14:24:30Z</updated>

		<summary type="html">&lt;p&gt;Mandellc: an xslt that transforms Zotero RDF into a &amp;amp;lt;listBibl&amp;amp;gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here follows a Zotero to TEI XSLT, a simple one, that takes Zotero exported RDF and turns it into a listBibl with biblStruct.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;xsl:stylesheet xmlns:xsl=&amp;quot;http://www.w3.org/1999/XSL/Transform&amp;quot; xmlns:xs=&amp;quot;http://www.w3.org/2001/XMLSchema&amp;quot;&lt;br /&gt;
	xmlns:rdf=&amp;quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;quot; xmlns:tei=&amp;quot;http://www.tei-c.org/ns/1.0&amp;quot; xmlns:dc=&amp;quot;http://purl.org/dc/elements/1.1/&amp;quot;&lt;br /&gt;
	xmlns:vcard=&amp;quot;http://nwalsh.com/rdf/vCard#&amp;quot; xmlns:foaf=&amp;quot;http://xmlns.com/foaf/0.1/&amp;quot; xmlns:z=&amp;quot;http://www.zotero.org/namespaces/export#&amp;quot;&lt;br /&gt;
	xmlns:dcterms=&amp;quot;http://purl.org/dc/terms/&amp;quot; xmlns:bib=&amp;quot;http://purl.org/net/biblio#&amp;quot; xmlns:link=&amp;quot;http://purl.org/rss/1.0/modules/link/&amp;quot;&lt;br /&gt;
	xmlns:prism=&amp;quot;http://prismstandard.org/namespaces/1.2/basic/&amp;quot; exclude-result-prefixes=&amp;quot;xs rdf tei dc vcard foaf z dcterms bib link prism&amp;quot;&lt;br /&gt;
	version=&amp;quot;2.0&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;xsl:output method=&amp;quot;xml&amp;quot; escape-uri-attributes=&amp;quot;yes&amp;quot; indent=&amp;quot;yes&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;xsl:template match=&amp;quot;/rdf:RDF&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;listBibl&amp;gt;&lt;br /&gt;
			&amp;lt;head&amp;gt;Works Cited&amp;lt;/head&amp;gt;&lt;br /&gt;
			&amp;lt;xsl:apply-templates/&amp;gt;&lt;br /&gt;
		&amp;lt;/listBibl&amp;gt;&lt;br /&gt;
	&amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;xsl:template match=&amp;quot;bib:Memo&amp;quot;/&amp;gt;&lt;br /&gt;
	&amp;lt;xsl:template match=&amp;quot;z:Attachment&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;xsl:template match=&amp;quot;bib:Book&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;biblStruct&amp;gt;&lt;br /&gt;
			&amp;lt;monogr&amp;gt;&lt;br /&gt;
				&amp;lt;title&amp;gt;&lt;br /&gt;
					&amp;lt;xsl:value-of select=&amp;quot;dc:title&amp;quot;/&amp;gt;&lt;br /&gt;
				&amp;lt;/title&amp;gt;&lt;br /&gt;
				&amp;lt;xsl:call-template name=&amp;quot;author&amp;quot;/&amp;gt;&lt;br /&gt;
				&amp;lt;imprint&amp;gt;&lt;br /&gt;
					&amp;lt;publisher&amp;gt;&lt;br /&gt;
						&amp;lt;xsl:value-of select=&amp;quot;dc:publisher/foaf:Organization/foaf:name&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/publisher&amp;gt;&lt;br /&gt;
					&amp;lt;date&amp;gt;&lt;br /&gt;
						&amp;lt;xsl:choose&amp;gt;&lt;br /&gt;
							&amp;lt;xsl:when test=&amp;quot;contains(dc:date, '-')&amp;quot;&amp;gt;&lt;br /&gt;
								&amp;lt;xsl:value-of select=&amp;quot;substring-before(dc:date, '-')&amp;quot;/&amp;gt;&lt;br /&gt;
							&amp;lt;/xsl:when&amp;gt;&lt;br /&gt;
							&amp;lt;xsl:otherwise&amp;gt;&lt;br /&gt;
								&amp;lt;xsl:value-of select=&amp;quot;dc:date&amp;quot;/&amp;gt;&lt;br /&gt;
							&amp;lt;/xsl:otherwise&amp;gt;&lt;br /&gt;
						&amp;lt;/xsl:choose&amp;gt;&lt;br /&gt;
					&amp;lt;/date&amp;gt;&lt;br /&gt;
				&amp;lt;/imprint&amp;gt;&lt;br /&gt;
			&amp;lt;/monogr&amp;gt;&lt;br /&gt;
		&amp;lt;/biblStruct&amp;gt;&lt;br /&gt;
	&amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;xsl:template match=&amp;quot;rdf:li&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;author&amp;gt;&lt;br /&gt;
			&amp;lt;persName&amp;gt;&lt;br /&gt;
				&amp;lt;forename&amp;gt;&lt;br /&gt;
					&amp;lt;xsl:value-of select=&amp;quot;foaf:Person/foaf:givenname&amp;quot;/&amp;gt;&lt;br /&gt;
				&amp;lt;/forename&amp;gt;&lt;br /&gt;
				&amp;lt;surname&amp;gt;&lt;br /&gt;
					&amp;lt;xsl:value-of select=&amp;quot;foaf:Person/foaf:surname&amp;quot;/&amp;gt;&lt;br /&gt;
				&amp;lt;/surname&amp;gt;&lt;br /&gt;
			&amp;lt;/persName&amp;gt;&lt;br /&gt;
		&amp;lt;/author&amp;gt;&lt;br /&gt;
	&amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;xsl:template match=&amp;quot;bib:Article&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;biblStruct&amp;gt;&lt;br /&gt;
			&amp;lt;analytic&amp;gt;&lt;br /&gt;
				&amp;lt;title&amp;gt;&amp;lt;xsl:value-of select=&amp;quot;dc:title&amp;quot;/&amp;gt;&amp;lt;/title&amp;gt;&lt;br /&gt;
				&amp;lt;xsl:call-template name=&amp;quot;author&amp;quot;/&amp;gt;&lt;br /&gt;
			&amp;lt;/analytic&amp;gt;&lt;br /&gt;
			&amp;lt;monogr&amp;gt;&lt;br /&gt;
				&amp;lt;title&amp;gt;&lt;br /&gt;
					&amp;lt;xsl:value-of select=&amp;quot;following-sibling::bib:Journal[1]/dc:title&amp;quot;/&amp;gt;&lt;br /&gt;
				&amp;lt;/title&amp;gt;&lt;br /&gt;
				&amp;lt;imprint&amp;gt;&lt;br /&gt;
					&amp;lt;date&amp;gt;&amp;lt;xsl:value-of select=&amp;quot;dc:date&amp;quot;/&amp;gt;&amp;lt;/date&amp;gt;&lt;br /&gt;
					&amp;lt;biblScope type=&amp;quot;vol&amp;quot;&amp;gt;&amp;lt;xsl:value-of select=&amp;quot;following-sibling::bib:Journal[1]/prism:volume&amp;quot;/&amp;gt;&amp;lt;/biblScope&amp;gt;&lt;br /&gt;
					&amp;lt;biblScope type=&amp;quot;issue&amp;quot;&amp;gt;&amp;lt;xsl:value-of select=&amp;quot;following-sibling::bib:Journal[1]/prism:number&amp;quot;/&amp;gt;&amp;lt;/biblScope&amp;gt;&lt;br /&gt;
					&amp;lt;biblScope type=&amp;quot;pp&amp;quot;&amp;gt;&amp;lt;xsl:value-of select=&amp;quot;bib:pages&amp;quot;/&amp;gt;&amp;lt;/biblScope&amp;gt;&lt;br /&gt;
				&amp;lt;/imprint&amp;gt;&lt;br /&gt;
			&amp;lt;/monogr&amp;gt;&lt;br /&gt;
		&amp;lt;/biblStruct&amp;gt;&lt;br /&gt;
	&amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;xsl:template match=&amp;quot;bib:Journal&amp;quot;/&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
	&amp;lt;xsl:template match=&amp;quot;bib:Document&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;xsl:template match=&amp;quot;rdf:Description&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;xsl:choose&amp;gt;&lt;br /&gt;
			&amp;lt;xsl:when test=&amp;quot;z:itemType = 'conferencePaper'&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;biblStruct&amp;gt;&lt;br /&gt;
					&amp;lt;analytic&amp;gt;&lt;br /&gt;
						&amp;lt;title&amp;gt;&lt;br /&gt;
							&amp;lt;xsl:value-of select=&amp;quot;dc:title&amp;quot;/&amp;gt;&lt;br /&gt;
						&amp;lt;/title&amp;gt;&lt;br /&gt;
						&amp;lt;xsl:call-template name=&amp;quot;author&amp;quot;/&amp;gt;&lt;br /&gt;
					&amp;lt;/analytic&amp;gt;&lt;br /&gt;
				&amp;lt;/biblStruct&amp;gt;&lt;br /&gt;
			&amp;lt;/xsl:when&amp;gt;&lt;br /&gt;
			&amp;lt;!-- add outputs for other kinds of objects you collect --&amp;gt;&lt;br /&gt;
		&amp;lt;/xsl:choose&amp;gt;&lt;br /&gt;
	&amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;xsl:template name=&amp;quot;author&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;xsl:apply-templates select=&amp;quot;bib:authors/rdf:Seq/rdf:li&amp;quot;/&amp;gt;&lt;br /&gt;
	&amp;lt;/xsl:template&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/xsl:stylesheet&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mandellc</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=PoetryVisualizationTool&amp;diff=7252</id>
		<title>PoetryVisualizationTool</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=PoetryVisualizationTool&amp;diff=7252"/>
		<updated>2010-02-03T15:31:54Z</updated>

		<summary type="html">&lt;p&gt;Mandellc: /* Synopsis */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All the documents described in this essay are available here: http://www.4shared.com/file/213276484/156f569f/sampleCoding.html&lt;br /&gt;
&lt;br /&gt;
[[Category:Tools]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Analysis tools]]&lt;br /&gt;
[[Category:Interfaces]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Discovering]]&lt;br /&gt;
[[Category:Annotating]]&lt;br /&gt;
[[Category:Comparing]]&lt;br /&gt;
[[Category:Illustrating]]&lt;br /&gt;
[[Category:Representing]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
In collaboration with Digital Artist Ira Greenberg, I am building a Poetry Visualization Tool (http://unixgen.muohio.edu/~poetess/vmodel/vmodel.html).  He is building the visualizations in the Processing language; I am encoding the poetry to be visualized in an xml code that is an extension of TEI, with &amp;quot;pa&amp;quot; (Poetess Archive, http://unixgen.muohio.edu/~poetess) elements added into it.  What I offer to the TEI membership is not the processing code but the extended TEI and its schema that can be used to code the meter, sound, tropology, and syntax of poetry.&lt;br /&gt;
&lt;br /&gt;
The extended tag set and its schema are available here: http://www.4shared.com/file/213276484/156f569f/sampleCoding.htm&lt;br /&gt;
In this folder, you will find four extended-TEI documents coding one poem: one encodes its meter (see meterOde.xml), one its syntax (syntaxOde.xml), one its literary figures (tropologyOde.xml), and one its sound (soundOde.xml).  The schema, PAViz.rnc, contains all the added elements and attributes.  The tagset is derived from traditional terms for literary analysis and scansion.  The syntax draws on linguistic analyses, but it simplifies, abstracts, and focuses on aspects of the syntax in which literary critics are most often interested.  XSLTs are included that in my view reveal how versatile xml documents can be in “deformative reading”: manipulating texts to better reveal their deep structures.&lt;br /&gt;
&lt;br /&gt;
Since the schema can validate all four versions, you may ask, why bother making four documents?  Answer: Overlapping hierarchies.  Standoff markup would be a better solution than encoding four versions, and so I look forward to the development of Peter Shillingsburg's CaTT tool (http://www.ctsdh.luc.edu).&lt;br /&gt;
&lt;br /&gt;
I would love to know of other similar developments so that I may bring my work into sync with them, and of course please report any errors (mandellc@muohio.edu).&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
This is simply an extended tagset for analyzing poetry, at the moment, though the tag set can be used by a visualization tool in development at http://www.iragreenberg.com/ira_greenberg_data/code/poetess/index.html&lt;br /&gt;
&lt;br /&gt;
== User commentary ==&lt;br /&gt;
'''Please sign all comments.'''&lt;br /&gt;
&lt;br /&gt;
== System requirements ==&lt;br /&gt;
The Poetry Visualization tool can be run on Mac, Windows, or Linux.&lt;br /&gt;
Eventually, I hope to make it available online as a service in which properly coded poems can be loaded.  Until then, one will have to download the Processing application at http://www.processing.org in order to see the visualizations.  Again, I'm putting up on this wiki not the visualizations themselves and the processing code, but only the TEI used to encode the poetry that will participate.&lt;br /&gt;
&lt;br /&gt;
== Source code and licensing ==&lt;br /&gt;
&lt;br /&gt;
Source Code consists basically in an extended tei schema (PAViz.rnc) and four sample coded versions of John Keats's Ode on a Grecian Urn (meterOde.xml, tropologyOde.xml, soundOde.xml, and syntaxOde.xml).  All of these documents including documentation are available in the folder called sampleCoding available at:&lt;br /&gt;
&lt;br /&gt;
http://www.4shared.com/file/213276484/156f569f/sampleCoding.html&lt;br /&gt;
&lt;br /&gt;
This is a pre-release version of things, and I welcome comments.&lt;br /&gt;
&lt;br /&gt;
The finished tool will have a Creative Commons Attribution-Noncommercial 3.0 United States License.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Support for TEI ==&lt;br /&gt;
Any poem coded in TEI can be coded in this way.  Simply open your TEI document, change the schema to the schema provided, PAViz.rnc, and then make use of the elements you find described in the instruction document and in the teiHeaders of the four sample versions of Keats's Ode.&lt;br /&gt;
&lt;br /&gt;
== Language(s) ==&lt;br /&gt;
(What computer language is the tool written in? -- Processing&lt;br /&gt;
(What language(s) are used in the interface?) -- no inteface yet&lt;br /&gt;
(What language(s) are used in the documentation?) -- MSW&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
&lt;br /&gt;
See &amp;quot;Coding Poetry for the Poetess Archive&amp;quot; in the sampleCoding file available at 4Shared: http://www.4shared.com/file/213276484/156f569f/sampleCoding.html&lt;br /&gt;
&lt;br /&gt;
When released, the tool will be announced here:  http://unixgen.muohio.edu/~poetess/vmodel/vmodel.html&lt;br /&gt;
&lt;br /&gt;
== Tech support ==&lt;br /&gt;
(What technical support is provided by the creators of the tool?) Email me at mandellc@muohio.edu&lt;br /&gt;
&lt;br /&gt;
== User community ==&lt;br /&gt;
(Are there any communities of users?)&lt;br /&gt;
&lt;br /&gt;
== Sample implementations ==&lt;br /&gt;
&lt;br /&gt;
My favorite: http://iragreenberg.com/poetess/viz04/ (use a Safari browser)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Current version number and date of release ==&lt;br /&gt;
none yet&lt;br /&gt;
&lt;br /&gt;
== History of versions ==&lt;br /&gt;
none yet&lt;br /&gt;
&lt;br /&gt;
== How to download or buy ==&lt;br /&gt;
only TEI extensions available at the moment&lt;br /&gt;
&lt;br /&gt;
== Additional notes ==&lt;/div&gt;</summary>
		<author><name>Mandellc</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=PoetryVisualizationTool&amp;diff=7251</id>
		<title>PoetryVisualizationTool</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=PoetryVisualizationTool&amp;diff=7251"/>
		<updated>2010-02-03T15:22:49Z</updated>

		<summary type="html">&lt;p&gt;Mandellc: /* Synopsis */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All the documents described in this essay are available here: http://www.4shared.com/file/213276484/156f569f/sampleCoding.html&lt;br /&gt;
&lt;br /&gt;
[[Category:Tools]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Analysis tools]]&lt;br /&gt;
[[Category:Interfaces]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Discovering]]&lt;br /&gt;
[[Category:Annotating]]&lt;br /&gt;
[[Category:Comparing]]&lt;br /&gt;
[[Category:Illustrating]]&lt;br /&gt;
[[Category:Representing]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
In collaboration with Digital Artist Ira Greenberg, I am building a Poetry Visualization Tool (http://unixgen.muohio.edu/~poetess/vmodel/vmodel.html).  He is building the visualizations in the Processing language; I am encoding the poetry to be visualized in an xml code that is an extension of TEI, with &amp;quot;pa&amp;quot; (Poetess Archive, http://unixgen.muohio.edu/~poetess) elements added into it.  What I offer here is not the processing code but the extended TEI and its schema that can be used to code the meter, sound, tropology, and syntax of poetry.&lt;br /&gt;
&lt;br /&gt;
The extended tag set and its schema are available here: http://www.4shared.com/file/213276484/156f569f/sampleCoding.htm&lt;br /&gt;
In this folder, you will find four TEI documents coding one poem: one encodes its meter (see meterOde.xml), one its syntax (syntaxOde.xml), one its literary figures (tropologyOde.xml), and one its sound (soundOde.xml).  The tagset is derived from traditional terms for literary analysis and scansion.  The syntax draws on linguistic analyses, but it simplifies, abstracts, and focuses on aspects of the syntax in which literary critics are most often interested.&lt;br /&gt;
&lt;br /&gt;
Standoff markup would be a better solution, and so I look forward to the development of Peter Shillingsburg's CaTT tool (http://www.ctsdh.luc.edu).&lt;br /&gt;
&lt;br /&gt;
I would love to know of other similar developments so that I may bring my work into synch with them (mandellc@muohio.edu).&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
This is simply an extended tagset for analyzing poetry, at the moment, though the tag set can be used by a visualization tool in development at http://www.iragreenberg.com/ira_greenberg_data/code/poetess/index.html&lt;br /&gt;
&lt;br /&gt;
== User commentary ==&lt;br /&gt;
'''Please sign all comments.'''&lt;br /&gt;
&lt;br /&gt;
== System requirements ==&lt;br /&gt;
The Poetry Visualization tool can be run on Mac, Windows, or Linux.&lt;br /&gt;
Eventually, I hope to make it available online as a service in which properly coded poems can be loaded.  Until then, one will have to download the Processing application at http://www.processing.org in order to see the visualizations.  Again, I'm putting up on this wiki not the visualizations themselves and the processing code, but only the TEI used to encode the poetry that will participate.&lt;br /&gt;
&lt;br /&gt;
== Source code and licensing ==&lt;br /&gt;
&lt;br /&gt;
Source Code consists basically in an extended tei schema (PAViz.rnc) and four sample coded versions of John Keats's Ode on a Grecian Urn (meterOde.xml, tropologyOde.xml, soundOde.xml, and syntaxOde.xml).  All of these documents including documentation are available in the folder called sampleCoding available at:&lt;br /&gt;
&lt;br /&gt;
http://www.4shared.com/file/213276484/156f569f/sampleCoding.html&lt;br /&gt;
&lt;br /&gt;
This is a pre-release version of things, and I welcome comments.&lt;br /&gt;
&lt;br /&gt;
The finished tool will have a Creative Commons Attribution-Noncommercial 3.0 United States License.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Support for TEI ==&lt;br /&gt;
Any poem coded in TEI can be coded in this way.  Simply open your TEI document, change the schema to the schema provided, PAViz.rnc, and then make use of the elements you find described in the instruction document and in the teiHeaders of the four sample versions of Keats's Ode.&lt;br /&gt;
&lt;br /&gt;
== Language(s) ==&lt;br /&gt;
(What computer language is the tool written in? -- Processing&lt;br /&gt;
(What language(s) are used in the interface?) -- no inteface yet&lt;br /&gt;
(What language(s) are used in the documentation?) -- MSW&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
&lt;br /&gt;
See &amp;quot;Coding Poetry for the Poetess Archive&amp;quot; in the sampleCoding file available at 4Shared: http://www.4shared.com/file/213276484/156f569f/sampleCoding.html&lt;br /&gt;
&lt;br /&gt;
When released, the tool will be announced here:  http://unixgen.muohio.edu/~poetess/vmodel/vmodel.html&lt;br /&gt;
&lt;br /&gt;
== Tech support ==&lt;br /&gt;
(What technical support is provided by the creators of the tool?) Email me at mandellc@muohio.edu&lt;br /&gt;
&lt;br /&gt;
== User community ==&lt;br /&gt;
(Are there any communities of users?)&lt;br /&gt;
&lt;br /&gt;
== Sample implementations ==&lt;br /&gt;
&lt;br /&gt;
My favorite: http://iragreenberg.com/poetess/viz04/ (use a Safari browser)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Current version number and date of release ==&lt;br /&gt;
none yet&lt;br /&gt;
&lt;br /&gt;
== History of versions ==&lt;br /&gt;
none yet&lt;br /&gt;
&lt;br /&gt;
== How to download or buy ==&lt;br /&gt;
only TEI extensions available at the moment&lt;br /&gt;
&lt;br /&gt;
== Additional notes ==&lt;/div&gt;</summary>
		<author><name>Mandellc</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=PoetryVisualizationTool&amp;diff=7250</id>
		<title>PoetryVisualizationTool</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=PoetryVisualizationTool&amp;diff=7250"/>
		<updated>2010-02-01T23:07:28Z</updated>

		<summary type="html">&lt;p&gt;Mandellc: /* System requirements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All the documents described in this essay are available here: http://www.4shared.com/file/213276484/156f569f/sampleCoding.html&lt;br /&gt;
&lt;br /&gt;
[[Category:Tools]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Analysis tools]]&lt;br /&gt;
[[Category:Interfaces]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Discovering]]&lt;br /&gt;
[[Category:Annotating]]&lt;br /&gt;
[[Category:Comparing]]&lt;br /&gt;
[[Category:Illustrating]]&lt;br /&gt;
[[Category:Representing]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
In collaboration with Digital Artist Ira Greenberg, I am building a Poetry Visualization Tool (http://unixgen.muohio.edu/~poetess/vmodel/vmodel.html).  He is building the visualizations in the Processing language; I am encoding the poetry to be visualized in an xml code that is an extension of TEI, with &amp;quot;pa&amp;quot; (Poetess Archive / http://unixgen.muohio.edu/~poetess) elements added into it.  What I offer here is not the processing code but the extended TEI and its schema that can be used to code the meter, sound, tropology, and syntax of poetry.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
This is simply an extended tagset for analyzing poetry, at the moment, though the tag set can be used by a visualization tool in development at http://www.iragreenberg.com/ira_greenberg_data/code/poetess/index.html&lt;br /&gt;
&lt;br /&gt;
== User commentary ==&lt;br /&gt;
'''Please sign all comments.'''&lt;br /&gt;
&lt;br /&gt;
== System requirements ==&lt;br /&gt;
The Poetry Visualization tool can be run on Mac, Windows, or Linux.&lt;br /&gt;
Eventually, I hope to make it available online as a service in which properly coded poems can be loaded.  Until then, one will have to download the Processing application at http://www.processing.org in order to see the visualizations.  Again, I'm putting up on this wiki not the visualizations themselves and the processing code, but only the TEI used to encode the poetry that will participate.&lt;br /&gt;
&lt;br /&gt;
== Source code and licensing ==&lt;br /&gt;
&lt;br /&gt;
Source Code consists basically in an extended tei schema (PAViz.rnc) and four sample coded versions of John Keats's Ode on a Grecian Urn (meterOde.xml, tropologyOde.xml, soundOde.xml, and syntaxOde.xml).  All of these documents including documentation are available in the folder called sampleCoding available at:&lt;br /&gt;
&lt;br /&gt;
http://www.4shared.com/file/213276484/156f569f/sampleCoding.html&lt;br /&gt;
&lt;br /&gt;
This is a pre-release version of things, and I welcome comments.&lt;br /&gt;
&lt;br /&gt;
The finished tool will have a Creative Commons Attribution-Noncommercial 3.0 United States License.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Support for TEI ==&lt;br /&gt;
Any poem coded in TEI can be coded in this way.  Simply open your TEI document, change the schema to the schema provided, PAViz.rnc, and then make use of the elements you find described in the instruction document and in the teiHeaders of the four sample versions of Keats's Ode.&lt;br /&gt;
&lt;br /&gt;
== Language(s) ==&lt;br /&gt;
(What computer language is the tool written in? -- Processing&lt;br /&gt;
(What language(s) are used in the interface?) -- no inteface yet&lt;br /&gt;
(What language(s) are used in the documentation?) -- MSW&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
&lt;br /&gt;
See &amp;quot;Coding Poetry for the Poetess Archive&amp;quot; in the sampleCoding file available at 4Shared: http://www.4shared.com/file/213276484/156f569f/sampleCoding.html&lt;br /&gt;
&lt;br /&gt;
When released, the tool will be announced here:  http://unixgen.muohio.edu/~poetess/vmodel/vmodel.html&lt;br /&gt;
&lt;br /&gt;
== Tech support ==&lt;br /&gt;
(What technical support is provided by the creators of the tool?) Email me at mandellc@muohio.edu&lt;br /&gt;
&lt;br /&gt;
== User community ==&lt;br /&gt;
(Are there any communities of users?)&lt;br /&gt;
&lt;br /&gt;
== Sample implementations ==&lt;br /&gt;
&lt;br /&gt;
My favorite: http://iragreenberg.com/poetess/viz04/ (use a Safari browser)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Current version number and date of release ==&lt;br /&gt;
none yet&lt;br /&gt;
&lt;br /&gt;
== History of versions ==&lt;br /&gt;
none yet&lt;br /&gt;
&lt;br /&gt;
== How to download or buy ==&lt;br /&gt;
only TEI extensions available at the moment&lt;br /&gt;
&lt;br /&gt;
== Additional notes ==&lt;/div&gt;</summary>
		<author><name>Mandellc</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=PoetryVisualizationTool&amp;diff=7249</id>
		<title>PoetryVisualizationTool</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=PoetryVisualizationTool&amp;diff=7249"/>
		<updated>2010-02-01T22:56:58Z</updated>

		<summary type="html">&lt;p&gt;Mandellc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All the documents described in this essay are available here: http://www.4shared.com/file/213276484/156f569f/sampleCoding.html&lt;br /&gt;
&lt;br /&gt;
[[Category:Tools]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Analysis tools]]&lt;br /&gt;
[[Category:Interfaces]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Discovering]]&lt;br /&gt;
[[Category:Annotating]]&lt;br /&gt;
[[Category:Comparing]]&lt;br /&gt;
[[Category:Illustrating]]&lt;br /&gt;
[[Category:Representing]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
In collaboration with Digital Artist Ira Greenberg, I am building a Poetry Visualization Tool (http://unixgen.muohio.edu/~poetess/vmodel/vmodel.html).  He is building the visualizations in the Processing language; I am encoding the poetry to be visualized in an xml code that is an extension of TEI, with &amp;quot;pa&amp;quot; (Poetess Archive / http://unixgen.muohio.edu/~poetess) elements added into it.  What I offer here is not the processing code but the extended TEI and its schema that can be used to code the meter, sound, tropology, and syntax of poetry.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
This is simply an extended tagset for analyzing poetry, at the moment, though the tag set can be used by a visualization tool in development at http://www.iragreenberg.com/ira_greenberg_data/code/poetess/index.html&lt;br /&gt;
&lt;br /&gt;
== User commentary ==&lt;br /&gt;
'''Please sign all comments.'''&lt;br /&gt;
&lt;br /&gt;
== System requirements ==&lt;br /&gt;
The Poetry Visualization tool can be run on Mac, Windows, or Linux.&lt;br /&gt;
&lt;br /&gt;
== Source code and licensing ==&lt;br /&gt;
&lt;br /&gt;
Source Code consists basically in an extended tei schema (PAViz.rnc) and four sample coded versions of John Keats's Ode on a Grecian Urn (meterOde.xml, tropologyOde.xml, soundOde.xml, and syntaxOde.xml).  All of these documents including documentation are available in the folder called sampleCoding available at:&lt;br /&gt;
&lt;br /&gt;
http://www.4shared.com/file/213276484/156f569f/sampleCoding.html&lt;br /&gt;
&lt;br /&gt;
This is a pre-release version of things, and I welcome comments.&lt;br /&gt;
&lt;br /&gt;
The finished tool will have a Creative Commons Attribution-Noncommercial 3.0 United States License.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Support for TEI ==&lt;br /&gt;
Any poem coded in TEI can be coded in this way.  Simply open your TEI document, change the schema to the schema provided, PAViz.rnc, and then make use of the elements you find described in the instruction document and in the teiHeaders of the four sample versions of Keats's Ode.&lt;br /&gt;
&lt;br /&gt;
== Language(s) ==&lt;br /&gt;
(What computer language is the tool written in? -- Processing&lt;br /&gt;
(What language(s) are used in the interface?) -- no inteface yet&lt;br /&gt;
(What language(s) are used in the documentation?) -- MSW&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
&lt;br /&gt;
See &amp;quot;Coding Poetry for the Poetess Archive&amp;quot; in the sampleCoding file available at 4Shared: http://www.4shared.com/file/213276484/156f569f/sampleCoding.html&lt;br /&gt;
&lt;br /&gt;
When released, the tool will be announced here:  http://unixgen.muohio.edu/~poetess/vmodel/vmodel.html&lt;br /&gt;
&lt;br /&gt;
== Tech support ==&lt;br /&gt;
(What technical support is provided by the creators of the tool?) Email me at mandellc@muohio.edu&lt;br /&gt;
&lt;br /&gt;
== User community ==&lt;br /&gt;
(Are there any communities of users?)&lt;br /&gt;
&lt;br /&gt;
== Sample implementations ==&lt;br /&gt;
&lt;br /&gt;
My favorite: http://iragreenberg.com/poetess/viz04/ (use a Safari browser)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Current version number and date of release ==&lt;br /&gt;
none yet&lt;br /&gt;
&lt;br /&gt;
== History of versions ==&lt;br /&gt;
none yet&lt;br /&gt;
&lt;br /&gt;
== How to download or buy ==&lt;br /&gt;
only TEI extensions available at the moment&lt;br /&gt;
&lt;br /&gt;
== Additional notes ==&lt;/div&gt;</summary>
		<author><name>Mandellc</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=PoetryVisualizationTool&amp;diff=7248</id>
		<title>PoetryVisualizationTool</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=PoetryVisualizationTool&amp;diff=7248"/>
		<updated>2010-02-01T22:44:28Z</updated>

		<summary type="html">&lt;p&gt;Mandellc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;All the documents described in this essay are available here: http://www.4shared.com/file/213276484/156f569f/sampleCoding.html&lt;br /&gt;
&lt;br /&gt;
[[Category:Tools]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Analysis tools]]&lt;br /&gt;
[[Category:Interfaces]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Discovering]]&lt;br /&gt;
[[Category:Annotating]]&lt;br /&gt;
[[Category:Comparing]]&lt;br /&gt;
[[Category:Illustrating]]&lt;br /&gt;
[[Category:Representing]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
In collaboration with Digital Artist Ira Greenberg, I am building a Poetry Visualization Tool.  He is building the visualizations in the Processing language; I am encoding the poetry to be visualized in an xml code that is an extension of TEI, with &amp;quot;pa&amp;quot; ([Poetess Archive | http://unixgen.muohio.edu/~poetess]) elements added into it.  What I offer here is not the processing code but the extended TEI and its schema that can be used to code the meter, sound, tropology, and syntax of poetry.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
This is simply an extended tagset for analyzing poetry, at the moment, though the tag set can be used by a visualization tool in development at http://www.iragreenberg.com/ira_greenberg_data/code/poetess/index.html&lt;br /&gt;
&lt;br /&gt;
== User commentary ==&lt;br /&gt;
'''Please sign all comments.'''&lt;br /&gt;
&lt;br /&gt;
== System requirements ==&lt;br /&gt;
The Poetry Visualization tool can be run on Mac, Windows, or Linux.&lt;br /&gt;
&lt;br /&gt;
== Source code and licensing ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Support for TEI ==&lt;br /&gt;
(Does it support TEI or TEI Lite &amp;quot;out of the box&amp;quot;?)&lt;br /&gt;
(How easily can TEI be implemented?)&lt;br /&gt;
(Are there customized versions of the tool created for the TEI community, perhaps even by those not affiliated with the tool's creators?)&lt;br /&gt;
&lt;br /&gt;
== Language(s) ==&lt;br /&gt;
(What computer language is the tool written in?)&lt;br /&gt;
(What language(s) are used in the interface?)&lt;br /&gt;
(What language(s) are used in the documentation?)&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
(link to or information about documentation available)&lt;br /&gt;
&lt;br /&gt;
== Tech support ==&lt;br /&gt;
(What technical support is provided by the creators of the tool?)&lt;br /&gt;
&lt;br /&gt;
== User community ==&lt;br /&gt;
(Are there any communities of users?)&lt;br /&gt;
&lt;br /&gt;
== Sample implementations ==&lt;br /&gt;
(links to demo sites running the tool or successful implementations of it)&lt;br /&gt;
&lt;br /&gt;
== Current version number and date of release ==&lt;br /&gt;
(type in that information here)&lt;br /&gt;
&lt;br /&gt;
== History of versions ==&lt;br /&gt;
(type in that information here)&lt;br /&gt;
&lt;br /&gt;
== How to download or buy ==&lt;br /&gt;
(type in that information here)&lt;br /&gt;
&lt;br /&gt;
== Additional notes ==&lt;br /&gt;
(type in that information here)&lt;/div&gt;</summary>
		<author><name>Mandellc</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=PoetryVisualizationTool&amp;diff=7247</id>
		<title>PoetryVisualizationTool</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=PoetryVisualizationTool&amp;diff=7247"/>
		<updated>2010-02-01T22:36:39Z</updated>

		<summary type="html">&lt;p&gt;Mandellc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
http://www.4shared.com/file/213276484/156f569f/sampleCoding.html&lt;/div&gt;</summary>
		<author><name>Mandellc</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=PoetryVisualizationTool&amp;diff=7246</id>
		<title>PoetryVisualizationTool</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=PoetryVisualizationTool&amp;diff=7246"/>
		<updated>2010-02-01T22:36:28Z</updated>

		<summary type="html">&lt;p&gt;Mandellc: New page:   http://www.4shared.com/file/213276484/156f569f/sampleCoding.html&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
http://www.4shared.com/file/213276484/156f569f/sampleCoding.html&lt;/div&gt;</summary>
		<author><name>Mandellc</name></author>
		
	</entry>
</feed>