<?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=Piotr+Banski</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=Piotr+Banski"/>
	<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Special:Contributions/Piotr_Banski"/>
	<updated>2026-04-23T17:12:28Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.32.0</generator>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=XPointer&amp;diff=16929</id>
		<title>XPointer</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=XPointer&amp;diff=16929"/>
		<updated>2025-07-23T14:49:35Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: quick update&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''For use cases where these techniques might be used, see [[Stand-off use cases]].''&lt;br /&gt;
&lt;br /&gt;
'''In lieu of a page update:'''&lt;br /&gt;
* See  https://github.com/SCDH/tei-xpointer-schemes for a sample implementation of the [https://www.tei-c.org/release/doc/tei-p5-doc/en/html/SA.html#SATS TEI XPointer schemes].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The '''[http://www.w3.org/TR/xptr-framework/ XPointer Framework]''' is a collection of schemes (note: ''schemes'' not ''schemas'') that specify the method for addressing into the XML tree or help in this task. One end of its functionality overlaps with XPath, but the other allows one to address points and ranges inside elements, and this is often precious to us TEI-ers, especially in some [[stand-off markup]] systems or for working with ontologies (RDF may use it). It was initially defined as a companion to [[XLink]] that took care of URI fragment identifiers (the strings placed after the '#' in a URI).&lt;br /&gt;
&lt;br /&gt;
Some of the schemes, e.g. the simplest [http://www.w3.org/TR/xptr-element/ element() scheme], which uses simple tree-traversal syntax, are supported by any decent XML tool nowadays. It is worth pointing out that '''any tool that claims to support XInclude, must support the general conventions of the XPointer Framework and the XPointer element() scheme''' ([http://www.w3.org/TR/xinclude/#application per the XInclude spec]). The &amp;quot;general conventions&amp;quot; of the Framework mean, practically, the possibility of addressing elements by their IDs and the possibility of using multiple schemes in a single pointer (see [[#XPointer syntax|below]]).&lt;br /&gt;
&lt;br /&gt;
Apart from element(), there is also the [http://www.w3.org/TR/xptr-xmlns/ xmlns() scheme] that does namespace binding, and finally the [http://www.w3.org/TR/xptr-xpointer/ xpointer() scheme] that does an incredible lot of useful things in a very clever way, except it's not supported in full anywhere.&lt;br /&gt;
&lt;br /&gt;
The three schemes mentioned above have been defined or, in the case of xpointer(), drafted, by the W3C. The XPointer Framework, however, allows other parties to define their own schemes and get them registered in a special corner of the W3C called the [http://www.w3.org/2005/04/xpointer-schemes/ XPointer Registry]. And this is the point where we, as the TEI community, may want to focus some of our attention. Thanks to Syd Bauman, a number of [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/SA.html#SATSTEI-defined schemes] (described in the ''Linking and Alignment'' chapter of the Guidelines) have been registered with the W3C. One of them, [http://simonstl.com/ietf/draft-stlaurent-xpath-frag-01.txt xpath1()], is actually shared with other Internet communities, and implemented in Firefox (see [https://bugzilla.mozilla.org/show_bug.cgi?id=182323 bug #182323]). Another is smlxpath1() defined by the [http://www.w3.org/TR/sml/ Service Modeling Language]. Yet another is the string-range() scheme, one of the TEI-defined schemes that are useful in stand-off architecture and that may address into the content of elements.&lt;br /&gt;
&lt;br /&gt;
== Structure of the XPointer Framework ==&lt;br /&gt;
&lt;br /&gt;
The structure of the XPointer Framework is illustrated below:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
                      XPointer Framework&lt;br /&gt;
                       .               .&lt;br /&gt;
                      /                 \&lt;br /&gt;
                     /                   \&lt;br /&gt;
                    .                     .&lt;br /&gt;
                syntax              scheme repository&lt;br /&gt;
                                      .            .&lt;br /&gt;
                                     /              \&lt;br /&gt;
                                    /                \&lt;br /&gt;
                                   .                  .&lt;br /&gt;
                         W3C &amp;lt;span style=&amp;quot;color:brown&amp;quot;&amp;gt;schemes&amp;lt;/span&amp;gt;               external-party (a.o. TEI) &amp;lt;span style=&amp;quot;color:brown&amp;quot;&amp;gt;schemes&amp;lt;/span&amp;gt;&lt;br /&gt;
                       .   .       .                     .          .            .&lt;br /&gt;
                      /    |        \                   /           |             \&lt;br /&gt;
                     /     |         \                 /            |              \&lt;br /&gt;
                    .      .          .               .             .               .&lt;br /&gt;
               element() xmlns() xpointer()        range() '''[http://www.tei-c.org/release/doc/tei-p5-doc/en/html/SA.html#SATSSR string-range()]'''  ...  xpath2()&lt;br /&gt;
                                 .       .&lt;br /&gt;
                                /         \&lt;br /&gt;
                               /           \&lt;br /&gt;
                              .             .&lt;br /&gt;
                      XPath 1.0 &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;functions&amp;lt;/span&amp;gt;    XPointer &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;functions&amp;lt;/span&amp;gt;&lt;br /&gt;
                                            .   .       .&lt;br /&gt;
                                           /    |        \&lt;br /&gt;
                                          /     |         \&lt;br /&gt;
                                         .      .          .&lt;br /&gt;
                                  range-to()  end-point() '''[http://www.w3.org/TR/xptr-xpointer/#stringrange string-range()]''' ...&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Notice that '''string-range()''' is mentioned twice in the diagram above. This is just a coincidence that has generated some confusion in the past but, hopefully, will not do so any longer.&lt;br /&gt;
&lt;br /&gt;
The XPointer xpointer() scheme uses [http://www.w3.org/TR/xpath#corelib XPath functions] and adds to them [http://www.w3.org/TR/xptr-xpointer/#xptr-functions several others], which, by entering the inter-character space, are able to cleverly address what no XPath has been able to address before. Among these functions is one called string-range().&lt;br /&gt;
&lt;br /&gt;
Thus the difference between the W3C's &amp;lt;code&amp;gt;(location-set) string-range(location-set, string-to-match, offset?, length?)&amp;lt;/code&amp;gt; '''function''' and the TEI's &amp;lt;code&amp;gt;(string) string-range(pointer, offset, length?)&amp;lt;/code&amp;gt; '''scheme''' is not merely a difference in the definition, but also a difference in the status. There is at least one important consequence of this, worth bearing in mind: '''the status and implementation of TEI's schemes does not directly depend on the status and implementation of the xpointer() scheme'''. Of course, one can hope that the former may piggyback on the latter, from the perspective of software developers.&lt;br /&gt;
&lt;br /&gt;
== XPointer syntax ==&lt;br /&gt;
&lt;br /&gt;
The term &amp;quot;XPointer syntax&amp;quot; is used here informally. Its practical relevance is that it allows for two things: addressing by ID and using multiple pointers. Still informally, the syntax may be sketched as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Pointer  	  ::=   	ID | SchemeBased&lt;br /&gt;
SchemeBased	  ::=   	PointerPart+&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The first alternative allows for addressing by ID, reminiscent of HTML: &amp;lt;code&amp;gt;&amp;quot;resource.xml#ID&amp;quot;&amp;lt;/code&amp;gt; (which may also use the element() scheme, as in &amp;lt;code&amp;gt;&amp;quot;resource.xml#element(ID)&amp;quot;&amp;lt;/code&amp;gt;), and the other for sequencing schemes, as in the examples below:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;code&amp;gt;&amp;quot;resource.xml#xpointer((//p)[1])element(p1)&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
#&amp;lt;code&amp;gt;&amp;quot;resource.xml#xmlns(tei=&amp;lt;nowiki&amp;gt;http://www.tei-c.org/ns/1.0&amp;lt;/nowiki&amp;gt;)xpointer(//tei:p[1])&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The XPointer processor must evaluate such sequences from left to right and stop whenever it succeeds in making a match. This means that in the first case, ''if the scheme is recognized'', the processor tries to match the first of all &amp;lt;p&amp;amp;gt; elements that can be found in the document, and if it does not succeed, it moves to the second scheme and looks for the first element identified by the ID &amp;quot;p1&amp;quot;. Notice that this setup makes it '''possible for us to use TEI-defined schemes with any processor, provided that we provide some kind of fallback''' as the last scheme. Does that buy us much? Hardly, but it's a step forward until the processor starts recognizing TEI schemes.&lt;br /&gt;
&lt;br /&gt;
The second example sequence involves namespace binding: the xmlns() scheme binds the prefix, returns no result, so the processor moves to the next scheme and tries to make a match against, this time, a namespace-qualified element name.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The fact that the non-W3C schemes xpath1() and smlxpath1() are supported and in use ('''note:''' what are the tools that support them? -- need to find that out), makes it more likely for us to get the developers to plug in TEI-defined schemes into their tools. Of course these schemes have to be coded first, but that was obvious from the beginning. &lt;br /&gt;
&lt;br /&gt;
Pushing the xpointer() scheme ahead might result in our being able to reuse the routines handling that scheme, which would reduce the work on TEI-scheme-handling.&lt;br /&gt;
&lt;br /&gt;
Link to [[Xpath12match.xslt]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
'''Here I have to stop for a while'''&lt;br /&gt;
&lt;br /&gt;
What follows is a mess for now.&lt;br /&gt;
&lt;br /&gt;
== Lobbying section ==&lt;br /&gt;
(Refer to my unfinished essay on [[community efforts]] that will probably have to wait for after TEI-MM; this section is obviously also unfinished.)&lt;br /&gt;
&lt;br /&gt;
=== libxml2 ===&lt;br /&gt;
[http://xmlsoft.org/index.html Libxml2] is to my knowledge the only XML toolkit that has rudimentary support for XPointer's xpointer() schema. In fact, the support is rather bad... but at least it is there and can be fixed and extended if the need for it can be demonstrated. (The trick with diploma works may also work here -- there is a separate XPointer module that the student can concentrate on, possibly having an eye on what is common in handling the xpointer() scheme and the TEI-defined schemes)&lt;br /&gt;
&lt;br /&gt;
In fact, the TEI doesn't need the xpointer() scheme to be supported in xmllint (libxml2's parser) -- it just needs the general XPointer Framework to work (see the Addendum below for explanation).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''This is a fragment of my e-mail, with some links in it, about the xpointer/xinclude stuff'''&lt;br /&gt;
&lt;br /&gt;
Have to extract some bits from this fragment still.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;&lt;br /&gt;
I searched for freely-available free-standing XPointer-aware tools&lt;br /&gt;
and found out that only libxml2 (with xmllint) comes reasonably close,&lt;br /&gt;
but its XPointer support is incomplete and buggy. I reported some of&lt;br /&gt;
that on TEI-L some time ago. Since then, libxml2 has seen two bugfix&lt;br /&gt;
releases, but the crucial functionality is still missing.&lt;br /&gt;
&lt;br /&gt;
We have a colleague, Jakub Wilk, who did some bug-hunting and submitted&lt;br /&gt;
a few patches to libxml2 in his free time, but I guess both his free&lt;br /&gt;
time and patience have run out now (which I find perfectly understandable).&lt;br /&gt;
&lt;br /&gt;
In case you were interested in pursuing this further, let me give you&lt;br /&gt;
some links as starters:&lt;br /&gt;
&lt;br /&gt;
;&amp;quot;internal error, xpointer.c&amp;lt;nowiki&amp;gt;:&amp;lt;/nowiki&amp;gt;2409&amp;quot; when using string-range():&lt;br /&gt;
:https://bugzilla.gnome.org/show_bug.cgi?id=562541&lt;br /&gt;
&lt;br /&gt;
;Xpointer range-to function loses the end-point children: &lt;br /&gt;
:https://bugzilla.gnome.org/show_bug.cgi?id=306081&lt;br /&gt;
&lt;br /&gt;
;buggy range() XPointer function:&lt;br /&gt;
:https://bugzilla.gnome.org/show_bug.cgi?id=584219&lt;br /&gt;
&lt;br /&gt;
;buggy string-range() XPointer function:&lt;br /&gt;
:https://bugzilla.gnome.org/show_bug.cgi?id=583442&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I tried to use the xpointer-schema string-range() function instead of&lt;br /&gt;
the TEI-defined string-range schema, but that was impossible for a&lt;br /&gt;
while, until this bug got fixed:&lt;br /&gt;
&lt;br /&gt;
;unrecognized XPointer schemes are not skipped silently:&lt;br /&gt;
:https://bugzilla.gnome.org/show_bug.cgi?id=563562&lt;br /&gt;
&lt;br /&gt;
(so there is a light...)&lt;br /&gt;
&lt;br /&gt;
But that would require a few complications in the markup, to provide a&lt;br /&gt;
cascade of XPointer schemas, with the W3C schema as fallback until the&lt;br /&gt;
TEI-defined schemas are supported by some tool.&lt;br /&gt;
&amp;lt;/tt&amp;gt;&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=XPointer&amp;diff=16928</id>
		<title>XPointer</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=XPointer&amp;diff=16928"/>
		<updated>2025-07-22T23:23:06Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: /* XPointer syntax */ not sure if the whitespace there was legal&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''For use cases where these techniques might be used, see [[Stand-off use cases]].''&lt;br /&gt;
&lt;br /&gt;
The '''[http://www.w3.org/TR/xptr-framework/ XPointer Framework]''' is a collection of schemes (note: ''schemes'' not ''schemas'') that specify the method for addressing into the XML tree or help in this task. One end of its functionality overlaps with XPath, but the other allows one to address points and ranges inside elements, and this is often precious to us TEI-ers, especially in some [[stand-off markup]] systems or for working with ontologies (RDF may use it). It was initially defined as a companion to [[XLink]] that took care of URI fragment identifiers (the strings placed after the '#' in a URI).&lt;br /&gt;
&lt;br /&gt;
Some of the schemes, e.g. the simplest [http://www.w3.org/TR/xptr-element/ element() scheme], which uses simple tree-traversal syntax, are supported by any decent XML tool nowadays. It is worth pointing out that '''any tool that claims to support XInclude, must support the general conventions of the XPointer Framework and the XPointer element() scheme''' ([http://www.w3.org/TR/xinclude/#application per the XInclude spec]). The &amp;quot;general conventions&amp;quot; of the Framework mean, practically, the possibility of addressing elements by their IDs and the possibility of using multiple schemes in a single pointer (see [[#XPointer syntax|below]]).&lt;br /&gt;
&lt;br /&gt;
Apart from element(), there is also the [http://www.w3.org/TR/xptr-xmlns/ xmlns() scheme] that does namespace binding, and finally the [http://www.w3.org/TR/xptr-xpointer/ xpointer() scheme] that does an incredible lot of useful things in a very clever way, except it's not supported in full anywhere.&lt;br /&gt;
&lt;br /&gt;
The three schemes mentioned above have been defined or, in the case of xpointer(), drafted, by the W3C. The XPointer Framework, however, allows other parties to define their own schemes and get them registered in a special corner of the W3C called the [http://www.w3.org/2005/04/xpointer-schemes/ XPointer Registry]. And this is the point where we, as the TEI community, may want to focus some of our attention. Thanks to Syd Bauman, a number of [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/SA.html#SATSTEI-defined schemes] (described in the ''Linking and Alignment'' chapter of the Guidelines) have been registered with the W3C. One of them, [http://simonstl.com/ietf/draft-stlaurent-xpath-frag-01.txt xpath1()], is actually shared with other Internet communities, and implemented in Firefox (see [https://bugzilla.mozilla.org/show_bug.cgi?id=182323 bug #182323]). Another is smlxpath1() defined by the [http://www.w3.org/TR/sml/ Service Modeling Language]. Yet another is the string-range() scheme, one of the TEI-defined schemes that are useful in stand-off architecture and that may address into the content of elements.&lt;br /&gt;
&lt;br /&gt;
== Structure of the XPointer Framework ==&lt;br /&gt;
&lt;br /&gt;
The structure of the XPointer Framework is illustrated below:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
                      XPointer Framework&lt;br /&gt;
                       .               .&lt;br /&gt;
                      /                 \&lt;br /&gt;
                     /                   \&lt;br /&gt;
                    .                     .&lt;br /&gt;
                syntax              scheme repository&lt;br /&gt;
                                      .            .&lt;br /&gt;
                                     /              \&lt;br /&gt;
                                    /                \&lt;br /&gt;
                                   .                  .&lt;br /&gt;
                         W3C &amp;lt;span style=&amp;quot;color:brown&amp;quot;&amp;gt;schemes&amp;lt;/span&amp;gt;               external-party (a.o. TEI) &amp;lt;span style=&amp;quot;color:brown&amp;quot;&amp;gt;schemes&amp;lt;/span&amp;gt;&lt;br /&gt;
                       .   .       .                     .          .            .&lt;br /&gt;
                      /    |        \                   /           |             \&lt;br /&gt;
                     /     |         \                 /            |              \&lt;br /&gt;
                    .      .          .               .             .               .&lt;br /&gt;
               element() xmlns() xpointer()        range() '''[http://www.tei-c.org/release/doc/tei-p5-doc/en/html/SA.html#SATSSR string-range()]'''  ...  xpath2()&lt;br /&gt;
                                 .       .&lt;br /&gt;
                                /         \&lt;br /&gt;
                               /           \&lt;br /&gt;
                              .             .&lt;br /&gt;
                      XPath 1.0 &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;functions&amp;lt;/span&amp;gt;    XPointer &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;functions&amp;lt;/span&amp;gt;&lt;br /&gt;
                                            .   .       .&lt;br /&gt;
                                           /    |        \&lt;br /&gt;
                                          /     |         \&lt;br /&gt;
                                         .      .          .&lt;br /&gt;
                                  range-to()  end-point() '''[http://www.w3.org/TR/xptr-xpointer/#stringrange string-range()]''' ...&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Notice that '''string-range()''' is mentioned twice in the diagram above. This is just a coincidence that has generated some confusion in the past but, hopefully, will not do so any longer.&lt;br /&gt;
&lt;br /&gt;
The XPointer xpointer() scheme uses [http://www.w3.org/TR/xpath#corelib XPath functions] and adds to them [http://www.w3.org/TR/xptr-xpointer/#xptr-functions several others], which, by entering the inter-character space, are able to cleverly address what no XPath has been able to address before. Among these functions is one called string-range().&lt;br /&gt;
&lt;br /&gt;
Thus the difference between the W3C's &amp;lt;code&amp;gt;(location-set) string-range(location-set, string-to-match, offset?, length?)&amp;lt;/code&amp;gt; '''function''' and the TEI's &amp;lt;code&amp;gt;(string) string-range(pointer, offset, length?)&amp;lt;/code&amp;gt; '''scheme''' is not merely a difference in the definition, but also a difference in the status. There is at least one important consequence of this, worth bearing in mind: '''the status and implementation of TEI's schemes does not directly depend on the status and implementation of the xpointer() scheme'''. Of course, one can hope that the former may piggyback on the latter, from the perspective of software developers.&lt;br /&gt;
&lt;br /&gt;
== XPointer syntax ==&lt;br /&gt;
&lt;br /&gt;
The term &amp;quot;XPointer syntax&amp;quot; is used here informally. Its practical relevance is that it allows for two things: addressing by ID and using multiple pointers. Still informally, the syntax may be sketched as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Pointer  	  ::=   	ID | SchemeBased&lt;br /&gt;
SchemeBased	  ::=   	PointerPart+&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The first alternative allows for addressing by ID, reminiscent of HTML: &amp;lt;code&amp;gt;&amp;quot;resource.xml#ID&amp;quot;&amp;lt;/code&amp;gt; (which may also use the element() scheme, as in &amp;lt;code&amp;gt;&amp;quot;resource.xml#element(ID)&amp;quot;&amp;lt;/code&amp;gt;), and the other for sequencing schemes, as in the examples below:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;code&amp;gt;&amp;quot;resource.xml#xpointer((//p)[1])element(p1)&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
#&amp;lt;code&amp;gt;&amp;quot;resource.xml#xmlns(tei=&amp;lt;nowiki&amp;gt;http://www.tei-c.org/ns/1.0&amp;lt;/nowiki&amp;gt;)xpointer(//tei:p[1])&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The XPointer processor must evaluate such sequences from left to right and stop whenever it succeeds in making a match. This means that in the first case, ''if the scheme is recognized'', the processor tries to match the first of all &amp;lt;p&amp;amp;gt; elements that can be found in the document, and if it does not succeed, it moves to the second scheme and looks for the first element identified by the ID &amp;quot;p1&amp;quot;. Notice that this setup makes it '''possible for us to use TEI-defined schemes with any processor, provided that we provide some kind of fallback''' as the last scheme. Does that buy us much? Hardly, but it's a step forward until the processor starts recognizing TEI schemes.&lt;br /&gt;
&lt;br /&gt;
The second example sequence involves namespace binding: the xmlns() scheme binds the prefix, returns no result, so the processor moves to the next scheme and tries to make a match against, this time, a namespace-qualified element name.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The fact that the non-W3C schemes xpath1() and smlxpath1() are supported and in use ('''note:''' what are the tools that support them? -- need to find that out), makes it more likely for us to get the developers to plug in TEI-defined schemes into their tools. Of course these schemes have to be coded first, but that was obvious from the beginning. &lt;br /&gt;
&lt;br /&gt;
Pushing the xpointer() scheme ahead might result in our being able to reuse the routines handling that scheme, which would reduce the work on TEI-scheme-handling.&lt;br /&gt;
&lt;br /&gt;
Link to [[Xpath12match.xslt]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
'''Here I have to stop for a while'''&lt;br /&gt;
&lt;br /&gt;
What follows is a mess for now.&lt;br /&gt;
&lt;br /&gt;
== Lobbying section ==&lt;br /&gt;
(Refer to my unfinished essay on [[community efforts]] that will probably have to wait for after TEI-MM; this section is obviously also unfinished.)&lt;br /&gt;
&lt;br /&gt;
=== libxml2 ===&lt;br /&gt;
[http://xmlsoft.org/index.html Libxml2] is to my knowledge the only XML toolkit that has rudimentary support for XPointer's xpointer() schema. In fact, the support is rather bad... but at least it is there and can be fixed and extended if the need for it can be demonstrated. (The trick with diploma works may also work here -- there is a separate XPointer module that the student can concentrate on, possibly having an eye on what is common in handling the xpointer() scheme and the TEI-defined schemes)&lt;br /&gt;
&lt;br /&gt;
In fact, the TEI doesn't need the xpointer() scheme to be supported in xmllint (libxml2's parser) -- it just needs the general XPointer Framework to work (see the Addendum below for explanation).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''This is a fragment of my e-mail, with some links in it, about the xpointer/xinclude stuff'''&lt;br /&gt;
&lt;br /&gt;
Have to extract some bits from this fragment still.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;&lt;br /&gt;
I searched for freely-available free-standing XPointer-aware tools&lt;br /&gt;
and found out that only libxml2 (with xmllint) comes reasonably close,&lt;br /&gt;
but its XPointer support is incomplete and buggy. I reported some of&lt;br /&gt;
that on TEI-L some time ago. Since then, libxml2 has seen two bugfix&lt;br /&gt;
releases, but the crucial functionality is still missing.&lt;br /&gt;
&lt;br /&gt;
We have a colleague, Jakub Wilk, who did some bug-hunting and submitted&lt;br /&gt;
a few patches to libxml2 in his free time, but I guess both his free&lt;br /&gt;
time and patience have run out now (which I find perfectly understandable).&lt;br /&gt;
&lt;br /&gt;
In case you were interested in pursuing this further, let me give you&lt;br /&gt;
some links as starters:&lt;br /&gt;
&lt;br /&gt;
;&amp;quot;internal error, xpointer.c&amp;lt;nowiki&amp;gt;:&amp;lt;/nowiki&amp;gt;2409&amp;quot; when using string-range():&lt;br /&gt;
:https://bugzilla.gnome.org/show_bug.cgi?id=562541&lt;br /&gt;
&lt;br /&gt;
;Xpointer range-to function loses the end-point children: &lt;br /&gt;
:https://bugzilla.gnome.org/show_bug.cgi?id=306081&lt;br /&gt;
&lt;br /&gt;
;buggy range() XPointer function:&lt;br /&gt;
:https://bugzilla.gnome.org/show_bug.cgi?id=584219&lt;br /&gt;
&lt;br /&gt;
;buggy string-range() XPointer function:&lt;br /&gt;
:https://bugzilla.gnome.org/show_bug.cgi?id=583442&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I tried to use the xpointer-schema string-range() function instead of&lt;br /&gt;
the TEI-defined string-range schema, but that was impossible for a&lt;br /&gt;
while, until this bug got fixed:&lt;br /&gt;
&lt;br /&gt;
;unrecognized XPointer schemes are not skipped silently:&lt;br /&gt;
:https://bugzilla.gnome.org/show_bug.cgi?id=563562&lt;br /&gt;
&lt;br /&gt;
(so there is a light...)&lt;br /&gt;
&lt;br /&gt;
But that would require a few complications in the markup, to provide a&lt;br /&gt;
cascade of XPointer schemas, with the W3C schema as fallback until the&lt;br /&gt;
TEI-defined schemas are supported by some tool.&lt;br /&gt;
&amp;lt;/tt&amp;gt;&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=XPointer&amp;diff=16927</id>
		<title>XPointer</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=XPointer&amp;diff=16927"/>
		<updated>2025-07-22T23:20:46Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: &amp;quot;homonymy&amp;quot; was misused here; &amp;quot;homography&amp;quot; would be more precise, but who would bother looking that up&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''For use cases where these techniques might be used, see [[Stand-off use cases]].''&lt;br /&gt;
&lt;br /&gt;
The '''[http://www.w3.org/TR/xptr-framework/ XPointer Framework]''' is a collection of schemes (note: ''schemes'' not ''schemas'') that specify the method for addressing into the XML tree or help in this task. One end of its functionality overlaps with XPath, but the other allows one to address points and ranges inside elements, and this is often precious to us TEI-ers, especially in some [[stand-off markup]] systems or for working with ontologies (RDF may use it). It was initially defined as a companion to [[XLink]] that took care of URI fragment identifiers (the strings placed after the '#' in a URI).&lt;br /&gt;
&lt;br /&gt;
Some of the schemes, e.g. the simplest [http://www.w3.org/TR/xptr-element/ element() scheme], which uses simple tree-traversal syntax, are supported by any decent XML tool nowadays. It is worth pointing out that '''any tool that claims to support XInclude, must support the general conventions of the XPointer Framework and the XPointer element() scheme''' ([http://www.w3.org/TR/xinclude/#application per the XInclude spec]). The &amp;quot;general conventions&amp;quot; of the Framework mean, practically, the possibility of addressing elements by their IDs and the possibility of using multiple schemes in a single pointer (see [[#XPointer syntax|below]]).&lt;br /&gt;
&lt;br /&gt;
Apart from element(), there is also the [http://www.w3.org/TR/xptr-xmlns/ xmlns() scheme] that does namespace binding, and finally the [http://www.w3.org/TR/xptr-xpointer/ xpointer() scheme] that does an incredible lot of useful things in a very clever way, except it's not supported in full anywhere.&lt;br /&gt;
&lt;br /&gt;
The three schemes mentioned above have been defined or, in the case of xpointer(), drafted, by the W3C. The XPointer Framework, however, allows other parties to define their own schemes and get them registered in a special corner of the W3C called the [http://www.w3.org/2005/04/xpointer-schemes/ XPointer Registry]. And this is the point where we, as the TEI community, may want to focus some of our attention. Thanks to Syd Bauman, a number of [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/SA.html#SATSTEI-defined schemes] (described in the ''Linking and Alignment'' chapter of the Guidelines) have been registered with the W3C. One of them, [http://simonstl.com/ietf/draft-stlaurent-xpath-frag-01.txt xpath1()], is actually shared with other Internet communities, and implemented in Firefox (see [https://bugzilla.mozilla.org/show_bug.cgi?id=182323 bug #182323]). Another is smlxpath1() defined by the [http://www.w3.org/TR/sml/ Service Modeling Language]. Yet another is the string-range() scheme, one of the TEI-defined schemes that are useful in stand-off architecture and that may address into the content of elements.&lt;br /&gt;
&lt;br /&gt;
== Structure of the XPointer Framework ==&lt;br /&gt;
&lt;br /&gt;
The structure of the XPointer Framework is illustrated below:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
                      XPointer Framework&lt;br /&gt;
                       .               .&lt;br /&gt;
                      /                 \&lt;br /&gt;
                     /                   \&lt;br /&gt;
                    .                     .&lt;br /&gt;
                syntax              scheme repository&lt;br /&gt;
                                      .            .&lt;br /&gt;
                                     /              \&lt;br /&gt;
                                    /                \&lt;br /&gt;
                                   .                  .&lt;br /&gt;
                         W3C &amp;lt;span style=&amp;quot;color:brown&amp;quot;&amp;gt;schemes&amp;lt;/span&amp;gt;               external-party (a.o. TEI) &amp;lt;span style=&amp;quot;color:brown&amp;quot;&amp;gt;schemes&amp;lt;/span&amp;gt;&lt;br /&gt;
                       .   .       .                     .          .            .&lt;br /&gt;
                      /    |        \                   /           |             \&lt;br /&gt;
                     /     |         \                 /            |              \&lt;br /&gt;
                    .      .          .               .             .               .&lt;br /&gt;
               element() xmlns() xpointer()        range() '''[http://www.tei-c.org/release/doc/tei-p5-doc/en/html/SA.html#SATSSR string-range()]'''  ...  xpath2()&lt;br /&gt;
                                 .       .&lt;br /&gt;
                                /         \&lt;br /&gt;
                               /           \&lt;br /&gt;
                              .             .&lt;br /&gt;
                      XPath 1.0 &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;functions&amp;lt;/span&amp;gt;    XPointer &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;functions&amp;lt;/span&amp;gt;&lt;br /&gt;
                                            .   .       .&lt;br /&gt;
                                           /    |        \&lt;br /&gt;
                                          /     |         \&lt;br /&gt;
                                         .      .          .&lt;br /&gt;
                                  range-to()  end-point() '''[http://www.w3.org/TR/xptr-xpointer/#stringrange string-range()]''' ...&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Notice that '''string-range()''' is mentioned twice in the diagram above. This is just a coincidence that has generated some confusion in the past but, hopefully, will not do so any longer.&lt;br /&gt;
&lt;br /&gt;
The XPointer xpointer() scheme uses [http://www.w3.org/TR/xpath#corelib XPath functions] and adds to them [http://www.w3.org/TR/xptr-xpointer/#xptr-functions several others], which, by entering the inter-character space, are able to cleverly address what no XPath has been able to address before. Among these functions is one called string-range().&lt;br /&gt;
&lt;br /&gt;
Thus the difference between the W3C's &amp;lt;code&amp;gt;(location-set) string-range(location-set, string-to-match, offset?, length?)&amp;lt;/code&amp;gt; '''function''' and the TEI's &amp;lt;code&amp;gt;(string) string-range(pointer, offset, length?)&amp;lt;/code&amp;gt; '''scheme''' is not merely a difference in the definition, but also a difference in the status. There is at least one important consequence of this, worth bearing in mind: '''the status and implementation of TEI's schemes does not directly depend on the status and implementation of the xpointer() scheme'''. Of course, one can hope that the former may piggyback on the latter, from the perspective of software developers.&lt;br /&gt;
&lt;br /&gt;
== XPointer syntax ==&lt;br /&gt;
&lt;br /&gt;
The term &amp;quot;XPointer syntax&amp;quot; is used here informally. Its practical relevance is that it allows for two things: addressing by ID and using multiple pointers. Still informally, the syntax may be sketched as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Pointer  	  ::=   	ID | SchemeBased&lt;br /&gt;
SchemeBased	  ::=   	PointerPart+&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The first alternative allows for addressing by ID, reminiscent of HTML: &amp;lt;code&amp;gt;&amp;quot;resource.xml#ID&amp;quot;&amp;lt;/code&amp;gt; (which may also use the element() scheme, as in &amp;lt;code&amp;gt;&amp;quot;resource.xml#element(ID)&amp;quot;&amp;lt;/code&amp;gt;), and the other for sequencing schemes, as in the examples below:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;code&amp;gt;&amp;quot;resource.xml#xpointer((//p)[1]) element(p1)&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
#&amp;lt;code&amp;gt;&amp;quot;resource.xml#xmlns(tei=&amp;lt;nowiki&amp;gt;http://www.tei-c.org/ns/1.0&amp;lt;/nowiki&amp;gt;)xpointer(//tei:p[1])&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The XPointer processor must evaluate such sequences from left to right and stop whenever it succeeds in making a match. This means that in the first case, ''if the scheme is recognized'', the processor tries to match the first of all &amp;lt;p&amp;amp;gt; elements that can be found in the document, and if it does not succeed, it moves to the second scheme and looks for the first element identified by the ID &amp;quot;p1&amp;quot;. Notice that this setup makes it '''possible for us to use TEI-defined schemes with any processor, provided that we provide some kind of fallback''' as the last scheme. Does that buy us much? Hardly, but it's a step forward until the processor starts recognizing TEI schemes.&lt;br /&gt;
&lt;br /&gt;
The second example sequence involves namespace binding: the xmlns() scheme binds the prefix, returns no result, so the processor moves to the next scheme and tries to make a match against, this time, a namespace-qualified element name.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The fact that the non-W3C schemes xpath1() and smlxpath1() are supported and in use ('''note:''' what are the tools that support them? -- need to find that out), makes it more likely for us to get the developers to plug in TEI-defined schemes into their tools. Of course these schemes have to be coded first, but that was obvious from the beginning. &lt;br /&gt;
&lt;br /&gt;
Pushing the xpointer() scheme ahead might result in our being able to reuse the routines handling that scheme, which would reduce the work on TEI-scheme-handling.&lt;br /&gt;
&lt;br /&gt;
Link to [[Xpath12match.xslt]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
'''Here I have to stop for a while'''&lt;br /&gt;
&lt;br /&gt;
What follows is a mess for now.&lt;br /&gt;
&lt;br /&gt;
== Lobbying section ==&lt;br /&gt;
(Refer to my unfinished essay on [[community efforts]] that will probably have to wait for after TEI-MM; this section is obviously also unfinished.)&lt;br /&gt;
&lt;br /&gt;
=== libxml2 ===&lt;br /&gt;
[http://xmlsoft.org/index.html Libxml2] is to my knowledge the only XML toolkit that has rudimentary support for XPointer's xpointer() schema. In fact, the support is rather bad... but at least it is there and can be fixed and extended if the need for it can be demonstrated. (The trick with diploma works may also work here -- there is a separate XPointer module that the student can concentrate on, possibly having an eye on what is common in handling the xpointer() scheme and the TEI-defined schemes)&lt;br /&gt;
&lt;br /&gt;
In fact, the TEI doesn't need the xpointer() scheme to be supported in xmllint (libxml2's parser) -- it just needs the general XPointer Framework to work (see the Addendum below for explanation).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''This is a fragment of my e-mail, with some links in it, about the xpointer/xinclude stuff'''&lt;br /&gt;
&lt;br /&gt;
Have to extract some bits from this fragment still.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;&lt;br /&gt;
I searched for freely-available free-standing XPointer-aware tools&lt;br /&gt;
and found out that only libxml2 (with xmllint) comes reasonably close,&lt;br /&gt;
but its XPointer support is incomplete and buggy. I reported some of&lt;br /&gt;
that on TEI-L some time ago. Since then, libxml2 has seen two bugfix&lt;br /&gt;
releases, but the crucial functionality is still missing.&lt;br /&gt;
&lt;br /&gt;
We have a colleague, Jakub Wilk, who did some bug-hunting and submitted&lt;br /&gt;
a few patches to libxml2 in his free time, but I guess both his free&lt;br /&gt;
time and patience have run out now (which I find perfectly understandable).&lt;br /&gt;
&lt;br /&gt;
In case you were interested in pursuing this further, let me give you&lt;br /&gt;
some links as starters:&lt;br /&gt;
&lt;br /&gt;
;&amp;quot;internal error, xpointer.c&amp;lt;nowiki&amp;gt;:&amp;lt;/nowiki&amp;gt;2409&amp;quot; when using string-range():&lt;br /&gt;
:https://bugzilla.gnome.org/show_bug.cgi?id=562541&lt;br /&gt;
&lt;br /&gt;
;Xpointer range-to function loses the end-point children: &lt;br /&gt;
:https://bugzilla.gnome.org/show_bug.cgi?id=306081&lt;br /&gt;
&lt;br /&gt;
;buggy range() XPointer function:&lt;br /&gt;
:https://bugzilla.gnome.org/show_bug.cgi?id=584219&lt;br /&gt;
&lt;br /&gt;
;buggy string-range() XPointer function:&lt;br /&gt;
:https://bugzilla.gnome.org/show_bug.cgi?id=583442&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I tried to use the xpointer-schema string-range() function instead of&lt;br /&gt;
the TEI-defined string-range schema, but that was impossible for a&lt;br /&gt;
while, until this bug got fixed:&lt;br /&gt;
&lt;br /&gt;
;unrecognized XPointer schemes are not skipped silently:&lt;br /&gt;
:https://bugzilla.gnome.org/show_bug.cgi?id=563562&lt;br /&gt;
&lt;br /&gt;
(so there is a light...)&lt;br /&gt;
&lt;br /&gt;
But that would require a few complications in the markup, to provide a&lt;br /&gt;
cascade of XPointer schemas, with the W3C schema as fallback until the&lt;br /&gt;
TEI-defined schemas are supported by some tool.&lt;br /&gt;
&amp;lt;/tt&amp;gt;&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:TEI_for_Linguists&amp;diff=16897</id>
		<title>SIG:TEI for Linguists</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:TEI_for_Linguists&amp;diff=16897"/>
		<updated>2023-03-23T22:26:42Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: /* Meetings */ +1&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Community]]&lt;br /&gt;
[[Category:SIG|Linguistics]]&lt;br /&gt;
[[Category:SIG:Linguistics| ]]&lt;br /&gt;
&lt;br /&gt;
== Aims ==&lt;br /&gt;
&lt;br /&gt;
This Special Interest Group is meant for those interested in linguistics, in the TEI, and in putting the two together.&lt;br /&gt;
&lt;br /&gt;
== Contact details, information ==&lt;br /&gt;
&lt;br /&gt;
* [http://listserv.brown.edu/archives/cgi-bin/wa?A0=TEI-LINGUISTICS Mailing list subscription page] (acts as an unofficial list of members)&lt;br /&gt;
* [https://github.com/LingSIG LingSIG at GitHub]&lt;br /&gt;
* [https://sourceforge.net/projects/lingsig/files/Documents/ LingSIG and related presentations], hosted at SourceForge&lt;br /&gt;
* [http://jenkins-paderborn.tei-c.org/view/LingSIG/ Mr. Jenkins makes sure that our XML is good-mannered]&lt;br /&gt;
&lt;br /&gt;
== Activities ==&lt;br /&gt;
The SIG activities include official meetings at TEI-MMs, conference reports and e-mail exchange on the mailing list. As part of its activity, the SIG attempted to [[SIG:Linguistics - bibliography|track and record]] papers that deal with using various markup standards for the purpose of encoding linguistic analyses and language resources. That list is not maintained (but you're welcome to change that).&lt;br /&gt;
&lt;br /&gt;
=== Tickets/Issues ===&lt;br /&gt;
The &amp;quot;LingSIG&amp;quot; label may be used in the GitHub ticketing system to informally indicate items that either have been posted as a result of LingSIG-related work or that could possibly benefit from extra attention on the group's part. Nothing more beyond that is implied; in particular, the label is not meant to exclude any other SIGs or individuals from the discussion.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/TEIC/TEI/issues?utf8=%E2%9C%93&amp;amp;q=label%3ASIG%3ALingSIG+ relevant GitHub issues]&lt;br /&gt;
* [https://sourceforge.net/p/tei/bugs/search?q=labels:LingSIG Bugs in the LingSIG's scope of interest (at SourceForge, of historical value only)]&lt;br /&gt;
* [https://sourceforge.net/p/tei/feature-requests/search?q=labels:LingSIG Feature Requests in the LingSIG's scope of interest (at SourceForge, of historical value only)]&lt;br /&gt;
&lt;br /&gt;
=== Meetings ===&lt;br /&gt;
* The first official meeting took place in Zadar, on 13 November 2010; see the [[Zadar, 13 November 2010, Agenda|agenda]] and the [[TEI for Linguists - minutes - 13nov10|minutes]]. The meeting was preceded by the LLiZ (Linguistic Lunch in Zadar) and a poster presentation.&lt;br /&gt;
* The second meeting took place in [[LingSIG in Würzburg, Oct 2011|Würzburg, on 14 October 2011]]. The meeting presented the [https://www.zotero.org/groups/tei-lingsig/items LingSIG bibliography maintained as a Zotero library], for everyone to use and add to (please?). Its recurring theme was &amp;quot;keep the SIG aware about the stuff you're doing&amp;quot;. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Piotr%2BAndreas.pdf/download slides])&lt;br /&gt;
* The third meeting took place in College Station, TX. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202012/LingSIG_TEI-MM-2012.pdf/download slides])&lt;br /&gt;
* The fourth meeting took place on Oct 3 2013 in Rome. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202013/LingSIG-2013.pdf/download slides]). It was preceded by a workshop on the &amp;quot;[http://corpora.ids-mannheim.de/queryTEI.html Perspectives on querying TEI-annotated data]&amp;quot;, co-organised by the conveners of the SIG.&lt;br /&gt;
* Due to an interplay of mostly unforeseen factors, the fifth meeting in Chicago was the least fruitful of all. Let's make sure that it will remain an edge case.&lt;br /&gt;
* The sixth meeting took place in [http://tei2015.huma-num.fr/en/ Lyon], on Thursday, October 29th. It featured [[LingSIG in Lyon, Oct 2015|four presentations and discussion]].&lt;br /&gt;
* The [[LingSIG_in_Vienna,_Sep_2016|seventh meeting]] took place in Vienna, during [http://tei2016.acdh.oeaw.ac.at/ TEI-MM-2016], and featured a half-day workshop devoted to lexical and terminological representations.&lt;br /&gt;
* The [[LingSIG_in_Victoria,_Nov_2017|8th meeting]] was held in [http://hcmc.uvic.ca/tei2017/index.php Victoria, BC].&lt;br /&gt;
* The [[LingSIG_in_Tokyo,_Sep_2018|9th meeting]] was held during the [https://tei2018.dhii.asia/ Tokyo conference]. Topic: the limits of the TEI and how to push them.&lt;br /&gt;
* The [[LingSIG in Graz, Sep 2019|10th meeting]]... conGraz!&lt;br /&gt;
* A hiatus followed (guess why) but the LingSIG came back in 2022, in Newcastle-upon-Tyne ([https://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202022/LingSIG-TEI-2022.pdf/download slides]).&lt;br /&gt;
* At this point, virtual meetings begin, so that the SIG can keep in touch between MMs. The first virtual meeting was held in March 2023 (slides: when ready).&lt;br /&gt;
&lt;br /&gt;
== Bibliography ==&lt;br /&gt;
The SIG has put together an initial bibliography of works relevant to linguistics and markup (TEI in particular but not only -- the world is full of sources of inspiration). The [[SIG:Linguistics - bibliography |bibliography]] is maintained as a Zotero resource. No one in particular is responsible for maintaining the resource, so everyone is... please feel welcome to help expand it.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
TEI projects with a linguistic focus&amp;lt;br /&amp;gt; &lt;br /&gt;
(''this is an open list'', please feel welcome to edit or make suggestions for inclusion!)&lt;br /&gt;
&lt;br /&gt;
* [[Trafilatura]]&lt;br /&gt;
* [[FreeDict]] &lt;br /&gt;
* [[TXM]]&lt;br /&gt;
* [https://sourceforge.net/projects/octc/ Open Content Text Corpus] (it needs you)&lt;br /&gt;
* [[FSD Validator]] (you need it)&lt;br /&gt;
* [https://github.com/LingSIG GitHub repositories of the LingSIG]&lt;br /&gt;
&lt;br /&gt;
== The most relevant chapters of the Guidelines ==&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/TS.html 8. Transcriptions of Speech]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/DI.html 9. Dictionaries]: we need to have a plan so that the NLP community does consider this as a default vocabulary for representing NLP lexica (e.g. full form lexica)&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CC.html 15. Language Corpora]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/AI.html 17. Simple Analytic Mechanisms]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/FS.html 18. Feature Structures]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/NH.html 20. Non-hierarchical Structures]&lt;br /&gt;
* [http://www.tei-c.org/Vault/GL/P3/TE.htm Terminology chapter, now gone; a half-spoken promise of its return lingers in the air]&lt;br /&gt;
&lt;br /&gt;
== Related SIGs ==&lt;br /&gt;
* [[SIG:Ontologies|Ontologies]]&lt;br /&gt;
* [[SIG:Computer-Mediated_Communication|Computer-Mediated Communication]]&lt;br /&gt;
* [[SIG:Tools|Tools]] (inactive)&lt;br /&gt;
* [[SIG:Overlap|Overlap]] (inactive)&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
* Here's [https://listserv.brown.edu/archives/cgi-bin/wa?A2=TEI-L;28ba674e.1007 how it began]&lt;br /&gt;
* TEI Guidelines have their apocrypha as well, here's one on [http://www.tei-c.org/Activities/Workgroups/SO/sow05.xml corpus annotation]. Note that it is absolutely non-normative, included here to give credit to the original Working Group and to provide a platform to either elaborate on or to diverge from.&lt;br /&gt;
&lt;br /&gt;
The first official meeting of the SIG took place on 13 November 2010 at the [http://www.tei-c.org/Membership/Meetings/2010/ TEI-MM in Zadar]. This meeting was preceded by a reconnaissance lunch (we liked both the intel and the food) and a Poster Slam presentation (boyakasha...).&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:TEI_for_Linguists&amp;diff=16896</id>
		<title>SIG:TEI for Linguists</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:TEI_for_Linguists&amp;diff=16896"/>
		<updated>2023-01-20T00:39:46Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: /* Meetings */ date correction, reality bit&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Community]]&lt;br /&gt;
[[Category:SIG|Linguistics]]&lt;br /&gt;
[[Category:SIG:Linguistics| ]]&lt;br /&gt;
&lt;br /&gt;
== Aims ==&lt;br /&gt;
&lt;br /&gt;
This Special Interest Group is meant for those interested in linguistics, in the TEI, and in putting the two together.&lt;br /&gt;
&lt;br /&gt;
== Contact details, information ==&lt;br /&gt;
&lt;br /&gt;
* [http://listserv.brown.edu/archives/cgi-bin/wa?A0=TEI-LINGUISTICS Mailing list subscription page] (acts as an unofficial list of members)&lt;br /&gt;
* [https://github.com/LingSIG LingSIG at GitHub]&lt;br /&gt;
* [https://sourceforge.net/projects/lingsig/files/Documents/ LingSIG and related presentations], hosted at SourceForge&lt;br /&gt;
* [http://jenkins-paderborn.tei-c.org/view/LingSIG/ Mr. Jenkins makes sure that our XML is good-mannered]&lt;br /&gt;
&lt;br /&gt;
== Activities ==&lt;br /&gt;
The SIG activities include official meetings at TEI-MMs, conference reports and e-mail exchange on the mailing list. As part of its activity, the SIG attempted to [[SIG:Linguistics - bibliography|track and record]] papers that deal with using various markup standards for the purpose of encoding linguistic analyses and language resources. That list is not maintained (but you're welcome to change that).&lt;br /&gt;
&lt;br /&gt;
=== Tickets/Issues ===&lt;br /&gt;
The &amp;quot;LingSIG&amp;quot; label may be used in the GitHub ticketing system to informally indicate items that either have been posted as a result of LingSIG-related work or that could possibly benefit from extra attention on the group's part. Nothing more beyond that is implied; in particular, the label is not meant to exclude any other SIGs or individuals from the discussion.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/TEIC/TEI/issues?utf8=%E2%9C%93&amp;amp;q=label%3ASIG%3ALingSIG+ relevant GitHub issues]&lt;br /&gt;
* [https://sourceforge.net/p/tei/bugs/search?q=labels:LingSIG Bugs in the LingSIG's scope of interest (at SourceForge, of historical value only)]&lt;br /&gt;
* [https://sourceforge.net/p/tei/feature-requests/search?q=labels:LingSIG Feature Requests in the LingSIG's scope of interest (at SourceForge, of historical value only)]&lt;br /&gt;
&lt;br /&gt;
=== Meetings ===&lt;br /&gt;
* The first official meeting took place in Zadar, on 13 November 2010; see the [[Zadar, 13 November 2010, Agenda|agenda]] and the [[TEI for Linguists - minutes - 13nov10|minutes]]. The meeting was preceded by the LLiZ (Linguistic Lunch in Zadar) and a poster presentation.&lt;br /&gt;
* The second meeting took place in [[LingSIG in Würzburg, Oct 2011|Würzburg, on 14 October 2011]]. The meeting presented the [https://www.zotero.org/groups/tei-lingsig/items LingSIG bibliography maintained as a Zotero library], for everyone to use and add to (please?). Its recurring theme was &amp;quot;keep the SIG aware about the stuff you're doing&amp;quot;. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Piotr%2BAndreas.pdf/download slides])&lt;br /&gt;
* The third meeting took place in College Station, TX. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202012/LingSIG_TEI-MM-2012.pdf/download slides])&lt;br /&gt;
* The fourth meeting took place on Oct 3 2013 in Rome. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202013/LingSIG-2013.pdf/download slides]). It was preceded by a workshop on the &amp;quot;[http://corpora.ids-mannheim.de/queryTEI.html Perspectives on querying TEI-annotated data]&amp;quot;, co-organised by the conveners of the SIG.&lt;br /&gt;
* Due to an interplay of mostly unforeseen factors, the fifth meeting in Chicago was the least fruitful of all. Let's make sure that it will remain an edge case.&lt;br /&gt;
* The sixth meeting took place in [http://tei2015.huma-num.fr/en/ Lyon], on Thursday, October 29th. It featured [[LingSIG in Lyon, Oct 2015|four presentations and discussion]].&lt;br /&gt;
* The [[LingSIG_in_Vienna,_Sep_2016|seventh meeting]] took place in Vienna, during [http://tei2016.acdh.oeaw.ac.at/ TEI-MM-2016], and featured a half-day workshop devoted to lexical and terminological representations.&lt;br /&gt;
* The [[LingSIG_in_Victoria,_Nov_2017|8th meeting]] was held in [http://hcmc.uvic.ca/tei2017/index.php Victoria, BC].&lt;br /&gt;
* The [[LingSIG_in_Tokyo,_Sep_2018|9th meeting]] was held during the [https://tei2018.dhii.asia/ Tokyo conference]. Topic: the limits of the TEI and how to push them.&lt;br /&gt;
* The [[LingSIG in Graz, Sep 2019|10th meeting]]... conGraz!&lt;br /&gt;
* A hiatus followed (guess why) but the LingSIG came back in 2022, in Newcastle-upon-Tyne ([https://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202022/LingSIG-TEI-2022.pdf/download slides]).&lt;br /&gt;
* The upcoming meeting is going to be virtual. It is tentatively scheduled for March 2023 (details on the mailing list and at GitHub)&lt;br /&gt;
&lt;br /&gt;
== Bibliography ==&lt;br /&gt;
The SIG has put together an initial bibliography of works relevant to linguistics and markup (TEI in particular but not only -- the world is full of sources of inspiration). The [[SIG:Linguistics - bibliography |bibliography]] is maintained as a Zotero resource. No one in particular is responsible for maintaining the resource, so everyone is... please feel welcome to help expand it.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
TEI projects with a linguistic focus&amp;lt;br /&amp;gt; &lt;br /&gt;
(''this is an open list'', please feel welcome to edit or make suggestions for inclusion!)&lt;br /&gt;
&lt;br /&gt;
* [[Trafilatura]]&lt;br /&gt;
* [[FreeDict]] &lt;br /&gt;
* [[TXM]]&lt;br /&gt;
* [https://sourceforge.net/projects/octc/ Open Content Text Corpus] (it needs you)&lt;br /&gt;
* [[FSD Validator]] (you need it)&lt;br /&gt;
* [https://github.com/LingSIG GitHub repositories of the LingSIG]&lt;br /&gt;
&lt;br /&gt;
== The most relevant chapters of the Guidelines ==&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/TS.html 8. Transcriptions of Speech]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/DI.html 9. Dictionaries]: we need to have a plan so that the NLP community does consider this as a default vocabulary for representing NLP lexica (e.g. full form lexica)&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CC.html 15. Language Corpora]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/AI.html 17. Simple Analytic Mechanisms]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/FS.html 18. Feature Structures]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/NH.html 20. Non-hierarchical Structures]&lt;br /&gt;
* [http://www.tei-c.org/Vault/GL/P3/TE.htm Terminology chapter, now gone; a half-spoken promise of its return lingers in the air]&lt;br /&gt;
&lt;br /&gt;
== Related SIGs ==&lt;br /&gt;
* [[SIG:Ontologies|Ontologies]]&lt;br /&gt;
* [[SIG:Computer-Mediated_Communication|Computer-Mediated Communication]]&lt;br /&gt;
* [[SIG:Tools|Tools]] (inactive)&lt;br /&gt;
* [[SIG:Overlap|Overlap]] (inactive)&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
* Here's [https://listserv.brown.edu/archives/cgi-bin/wa?A2=TEI-L;28ba674e.1007 how it began]&lt;br /&gt;
* TEI Guidelines have their apocrypha as well, here's one on [http://www.tei-c.org/Activities/Workgroups/SO/sow05.xml corpus annotation]. Note that it is absolutely non-normative, included here to give credit to the original Working Group and to provide a platform to either elaborate on or to diverge from.&lt;br /&gt;
&lt;br /&gt;
The first official meeting of the SIG took place on 13 November 2010 at the [http://www.tei-c.org/Membership/Meetings/2010/ TEI-MM in Zadar]. This meeting was preceded by a reconnaissance lunch (we liked both the intel and the food) and a Poster Slam presentation (boyakasha...).&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:TEI_for_Linguists&amp;diff=16893</id>
		<title>SIG:TEI for Linguists</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:TEI_for_Linguists&amp;diff=16893"/>
		<updated>2022-11-18T11:49:39Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: tidbits&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Community]]&lt;br /&gt;
[[Category:SIG|Linguistics]]&lt;br /&gt;
[[Category:SIG:Linguistics| ]]&lt;br /&gt;
&lt;br /&gt;
== Aims ==&lt;br /&gt;
&lt;br /&gt;
This Special Interest Group is meant for those interested in linguistics, in the TEI, and in putting the two together.&lt;br /&gt;
&lt;br /&gt;
== Contact details, information ==&lt;br /&gt;
&lt;br /&gt;
* [http://listserv.brown.edu/archives/cgi-bin/wa?A0=TEI-LINGUISTICS Mailing list subscription page] (acts as an unofficial list of members)&lt;br /&gt;
* [https://github.com/LingSIG LingSIG at GitHub]&lt;br /&gt;
* [https://sourceforge.net/projects/lingsig/files/Documents/ LingSIG and related presentations], hosted at SourceForge&lt;br /&gt;
* [http://jenkins-paderborn.tei-c.org/view/LingSIG/ Mr. Jenkins makes sure that our XML is good-mannered]&lt;br /&gt;
&lt;br /&gt;
== Activities ==&lt;br /&gt;
The SIG activities include official meetings at TEI-MMs, conference reports and e-mail exchange on the mailing list. As part of its activity, the SIG attempted to [[SIG:Linguistics - bibliography|track and record]] papers that deal with using various markup standards for the purpose of encoding linguistic analyses and language resources. That list is not maintained (but you're welcome to change that).&lt;br /&gt;
&lt;br /&gt;
=== Tickets/Issues ===&lt;br /&gt;
The &amp;quot;LingSIG&amp;quot; label may be used in the GitHub ticketing system to informally indicate items that either have been posted as a result of LingSIG-related work or that could possibly benefit from extra attention on the group's part. Nothing more beyond that is implied; in particular, the label is not meant to exclude any other SIGs or individuals from the discussion.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/TEIC/TEI/issues?utf8=%E2%9C%93&amp;amp;q=label%3ASIG%3ALingSIG+ relevant GitHub issues]&lt;br /&gt;
* [https://sourceforge.net/p/tei/bugs/search?q=labels:LingSIG Bugs in the LingSIG's scope of interest (at SourceForge, of historical value only)]&lt;br /&gt;
* [https://sourceforge.net/p/tei/feature-requests/search?q=labels:LingSIG Feature Requests in the LingSIG's scope of interest (at SourceForge, of historical value only)]&lt;br /&gt;
&lt;br /&gt;
=== Meetings ===&lt;br /&gt;
* The first official meeting took place in Zadar, on 13 November 2010; see the [[Zadar, 13 November 2010, Agenda|agenda]] and the [[TEI for Linguists - minutes - 13nov10|minutes]]. The meeting was preceded by the LLiZ (Linguistic Lunch in Zadar) and a poster presentation.&lt;br /&gt;
* The second meeting took place in [[LingSIG in Würzburg, Oct 2011|Würzburg, on 14 October 2011]]. The meeting presented the [https://www.zotero.org/groups/tei-lingsig/items LingSIG bibliography maintained as a Zotero library], for everyone to use and add to (please?). Its recurring theme was &amp;quot;keep the SIG aware about the stuff you're doing&amp;quot;. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Piotr%2BAndreas.pdf/download slides])&lt;br /&gt;
* The third meeting took place in College Station, TX. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202012/LingSIG_TEI-MM-2012.pdf/download slides])&lt;br /&gt;
* The fourth meeting took place on Oct 3 2013 in Rome. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202013/LingSIG-2013.pdf/download slides]). It was preceded by a workshop on the &amp;quot;[http://corpora.ids-mannheim.de/queryTEI.html Perspectives on querying TEI-annotated data]&amp;quot;, co-organised by the conveners of the SIG.&lt;br /&gt;
* Due to an interplay of mostly unforeseen factors, the fifth meeting in Chicago was the least fruitful of all. Let's make sure that it will remain an edge case.&lt;br /&gt;
* The sixth meeting took place in [http://tei2015.huma-num.fr/en/ Lyon], on Thursday, October 29th. It featured [[LingSIG in Lyon, Oct 2015|four presentations and discussion]].&lt;br /&gt;
* The [[LingSIG_in_Vienna,_Sep_2016|seventh meeting]] took place in Vienna, during [http://tei2016.acdh.oeaw.ac.at/ TEI-MM-2016], and featured a half-day workshop devoted to lexical and terminological representations.&lt;br /&gt;
* The [[LingSIG_in_Victoria,_Nov_2017|8th meeting]] was held in [http://hcmc.uvic.ca/tei2017/index.php Victoria, BC].&lt;br /&gt;
* The [[LingSIG_in_Tokyo,_Sep_2018|9th meeting]] was held during the [https://tei2018.dhii.asia/ Tokyo conference]. Topic: the limits of the TEI and how to push them.&lt;br /&gt;
* The [[LingSIG in Graz, Sep 2019|10th meeting]]... conGraz!&lt;br /&gt;
* A hiatus followed (guess why) but the LingSIG came back in 2022, in Newcastle-upon-Tyne ([https://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202022/LingSIG-TEI-2022.pdf/download slides]).&lt;br /&gt;
* The upcoming meeting is going to be virtual. It is scheduled for January 19th, 2023 (details on the mailing list and at GitHub)&lt;br /&gt;
&lt;br /&gt;
== Bibliography ==&lt;br /&gt;
The SIG has put together an initial bibliography of works relevant to linguistics and markup (TEI in particular but not only -- the world is full of sources of inspiration). The [[SIG:Linguistics - bibliography |bibliography]] is maintained as a Zotero resource. No one in particular is responsible for maintaining the resource, so everyone is... please feel welcome to help expand it.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
TEI projects with a linguistic focus&amp;lt;br /&amp;gt; &lt;br /&gt;
(''this is an open list'', please feel welcome to edit or make suggestions for inclusion!)&lt;br /&gt;
&lt;br /&gt;
* [[Trafilatura]]&lt;br /&gt;
* [[FreeDict]] &lt;br /&gt;
* [[TXM]]&lt;br /&gt;
* [https://sourceforge.net/projects/octc/ Open Content Text Corpus] (it needs you)&lt;br /&gt;
* [[FSD Validator]] (you need it)&lt;br /&gt;
* [https://github.com/LingSIG GitHub repositories of the LingSIG]&lt;br /&gt;
&lt;br /&gt;
== The most relevant chapters of the Guidelines ==&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/TS.html 8. Transcriptions of Speech]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/DI.html 9. Dictionaries]: we need to have a plan so that the NLP community does consider this as a default vocabulary for representing NLP lexica (e.g. full form lexica)&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CC.html 15. Language Corpora]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/AI.html 17. Simple Analytic Mechanisms]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/FS.html 18. Feature Structures]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/NH.html 20. Non-hierarchical Structures]&lt;br /&gt;
* [http://www.tei-c.org/Vault/GL/P3/TE.htm Terminology chapter, now gone; a half-spoken promise of its return lingers in the air]&lt;br /&gt;
&lt;br /&gt;
== Related SIGs ==&lt;br /&gt;
* [[SIG:Ontologies|Ontologies]]&lt;br /&gt;
* [[SIG:Computer-Mediated_Communication|Computer-Mediated Communication]]&lt;br /&gt;
* [[SIG:Tools|Tools]] (inactive)&lt;br /&gt;
* [[SIG:Overlap|Overlap]] (inactive)&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
* Here's [https://listserv.brown.edu/archives/cgi-bin/wa?A2=TEI-L;28ba674e.1007 how it began]&lt;br /&gt;
* TEI Guidelines have their apocrypha as well, here's one on [http://www.tei-c.org/Activities/Workgroups/SO/sow05.xml corpus annotation]. Note that it is absolutely non-normative, included here to give credit to the original Working Group and to provide a platform to either elaborate on or to diverge from.&lt;br /&gt;
&lt;br /&gt;
The first official meeting of the SIG took place on 13 November 2010 at the [http://www.tei-c.org/Membership/Meetings/2010/ TEI-MM in Zadar]. This meeting was preceded by a reconnaissance lunch (we liked both the intel and the food) and a Poster Slam presentation (boyakasha...).&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:TEI_for_Linguists&amp;diff=16892</id>
		<title>SIG:TEI for Linguists</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:TEI_for_Linguists&amp;diff=16892"/>
		<updated>2022-11-18T11:38:30Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: tidbits&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Community]]&lt;br /&gt;
[[Category:SIG|Linguistics]]&lt;br /&gt;
[[Category:SIG:Linguistics| ]]&lt;br /&gt;
&lt;br /&gt;
== Aims ==&lt;br /&gt;
&lt;br /&gt;
This Special Interest Group is meant for those interested in linguistics, in the TEI, and in putting the two together.&lt;br /&gt;
&lt;br /&gt;
== Contact details, information ==&lt;br /&gt;
&lt;br /&gt;
* [http://listserv.brown.edu/archives/cgi-bin/wa?A0=TEI-LINGUISTICS Mailing list subscription page] (acts as an unofficial list of members)&lt;br /&gt;
* [https://github.com/LingSIG LingSIG at GitHub]&lt;br /&gt;
* [https://sourceforge.net/projects/lingsig/files/Documents/ LingSIG and related presentations], hosted at SourceForge&lt;br /&gt;
* [http://jenkins-paderborn.tei-c.org/view/LingSIG/ Mr. Jenkins makes sure that our XML is good-mannered]&lt;br /&gt;
&lt;br /&gt;
== Activities ==&lt;br /&gt;
The SIG activities include official meetings at TEI-MMs, conference reports and e-mail exchange on the mailing list. As part of its activity, the SIG attempted to [[SIG:Linguistics - bibliography|track and record]] papers that deal with using various markup standards for the purpose of encoding linguistic analyses and language resources. That list is not maintained (but you're welcome to change that).&lt;br /&gt;
&lt;br /&gt;
=== Tickets/Issues ===&lt;br /&gt;
The &amp;quot;LingSIG&amp;quot; label may be used in the GitHub ticketing system to informally indicate items that either have been posted as a result of LingSIG-related work or that could possibly benefit from extra attention on the group's part. Nothing more beyond that is implied; in particular, the label is not meant to exclude any other SIGs or individuals from the discussion.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/TEIC/TEI/issues?utf8=%E2%9C%93&amp;amp;q=label%3ASIG%3ALingSIG+ relevant GitHub issues]&lt;br /&gt;
* [https://sourceforge.net/p/tei/bugs/search?q=labels:LingSIG Bugs in the LingSIG's scope of interest (at SourceForge, of historical value only)]&lt;br /&gt;
* [https://sourceforge.net/p/tei/feature-requests/search?q=labels:LingSIG Feature Requests in the LingSIG's scope of interest (at SourceForge, of historical value only)]&lt;br /&gt;
&lt;br /&gt;
=== Meetings ===&lt;br /&gt;
* The first official meeting took place in Zadar, on 13 November 2010; see the [[Zadar, 13 November 2010, Agenda|agenda]] and the [[TEI for Linguists - minutes - 13nov10|minutes]]. The meeting was preceded by the LLiZ (Linguistic Lunch in Zadar) and a poster presentation.&lt;br /&gt;
* The second meeting took place in [[LingSIG in Würzburg, Oct 2011|Würzburg, on 14 October 2011]]. The meeting presented the [https://www.zotero.org/groups/tei-lingsig/items LingSIG bibliography maintained as a Zotero library], for everyone to use and add to (please?). Its recurring theme was &amp;quot;keep the SIG aware about the stuff you're doing&amp;quot;. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Piotr%2BAndreas.pdf/download slides])&lt;br /&gt;
* The third meeting took place in College Station, TX. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202012/LingSIG_TEI-MM-2012.pdf/download slides])&lt;br /&gt;
* The fourth meeting took place on Oct 3 2013 in Rome. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202013/LingSIG-2013.pdf/download slides]). It was preceded by a workshop on the &amp;quot;[http://corpora.ids-mannheim.de/queryTEI.html Perspectives on querying TEI-annotated data]&amp;quot;, co-organised by the conveners of the SIG.&lt;br /&gt;
* Due to an interplay of mostly unforeseen factors, the fifth meeting in Chicago was the least fruitful of all. Let's make sure that it will remain an edge case.&lt;br /&gt;
* The sixth meeting took place in [http://tei2015.huma-num.fr/en/ Lyon], on Thursday, October 29th. It featured [[LingSIG in Lyon, Oct 2015|four presentations and discussion]].&lt;br /&gt;
* The [[LingSIG_in_Vienna,_Sep_2016|seventh meeting]] took place in Vienna, during [http://tei2016.acdh.oeaw.ac.at/ TEI-MM-2016], and featured a half-day workshop devoted to lexical and terminological representations.&lt;br /&gt;
* The [[LingSIG_in_Victoria,_Nov_2017|8th meeting]] was held in [http://hcmc.uvic.ca/tei2017/index.php Victoria, BC].&lt;br /&gt;
* The [[LingSIG_in_Tokyo,_Sep_2018|9th meeting]] was held during the [https://tei2018.dhii.asia/ Tokyo conference]. Topic: the limits of the TEI and how to push them.&lt;br /&gt;
* The [[LingSIG in Graz, Sep 2019|10th meeting]]... conGraz!&lt;br /&gt;
* A hiatus followed (guess why) but the LingSIG came back in 2022, in Newcastle-upon-Tyne ([https://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202022/LingSIG-TEI-2022.pdf/download slides]).&lt;br /&gt;
* The upcoming meeting is going to be virtual. It is scheduled for January 19th, 2023 (details on the mailing list and at GitHub)&lt;br /&gt;
&lt;br /&gt;
== Bibliography ==&lt;br /&gt;
The SIG has put together an initial bibliography of works relevant to linguistics and markup (TEI in particular but not only -- the world is full of sources of inspiration). The [[SIG:Linguistics - bibliography |bibliography]] is maintained as a Zotero resource. No one in particular is responsible for maintaining the resource, so everyone is... please feel welcome to help expand it.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
TEI projects with a linguistic focus&amp;lt;br /&amp;gt; &lt;br /&gt;
(''this is an open list'', please feel welcome to edit or make suggestions for inclusion!)&lt;br /&gt;
&lt;br /&gt;
* [[Trafilatura]]&lt;br /&gt;
* [[FreeDict]] &lt;br /&gt;
* [[TXM]]&lt;br /&gt;
* [https://sourceforge.net/projects/octc/ Open Content Text Corpus] (it needs you)&lt;br /&gt;
* [[FSD Validator]] (you need it)&lt;br /&gt;
* [https://github.com/LingSIG GitHub repositories of the LingSIG]&lt;br /&gt;
&lt;br /&gt;
== The most relevant chapters of the Guidelines ==&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/TS.html 8. Transcriptions of Speech]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/DI.html 9. Dictionaries]: we need to have a plan so that the NLP community does consider this as a default vocabulary for representing NLP lexica (e.g. full form lexica)&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CC.html 15. Language Corpora]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/AI.html 17. Simple Analytic Mechanisms]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/FS.html 18. Feature Structures]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/NH.html 20. Non-hierarchical Structures]&lt;br /&gt;
* [http://www.tei-c.org/Vault/GL/P3/TE.htm Terminology chapter, now gone; a half-spoken promise of its return lingers in the air]&lt;br /&gt;
&lt;br /&gt;
== Related SIGs ==&lt;br /&gt;
* [[SIG:Ontologies|Ontologies]]&lt;br /&gt;
* [[SIG:Computer-Mediated_Communication|Computer-Mediated Communication]]&lt;br /&gt;
* [[SIG:Tools|Tools]]&lt;br /&gt;
* [[SIG:Overlap|Overlap]] (inactive)&lt;br /&gt;
&lt;br /&gt;
== Tools - reports of non-TEI linguistic tools working / not working with TEI ==&lt;br /&gt;
* [http://gate.ac.uk/ GATE] doesn't do XML see [http://thread.gmane.org/gmane.comp.ai.gate.general/5257/focus=5301 XML parsing issue: consecutive empty elements mishandled] (report from 2009 -- that may have changed; any news?)&lt;br /&gt;
* See also the TEI-influenced or TEI-based tools: [[Xaira]], [[TXM]], [[wikipedia:Poliqarp|Poliqarp]], [[Philologic]] and [http://zil.ipipan.waw.pl/Anotatornia/ Anotatornia]&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
* Here's [https://listserv.brown.edu/archives/cgi-bin/wa?A2=TEI-L;28ba674e.1007 how it began]&lt;br /&gt;
* TEI Guidelines have their apocrypha as well, here's one on [http://www.tei-c.org/Activities/Workgroups/SO/sow05.xml corpus annotation]. Note that it is absolutely non-normative, included here to give credit to the original Working Group and to provide a platform to either elaborate on or to diverge from.&lt;br /&gt;
&lt;br /&gt;
The first official meeting of the SIG took place on 13 November 2010 at the [http://www.tei-c.org/Membership/Meetings/2010/ TEI-MM in Zadar]. This meeting was preceded by a reconnaissance lunch (we liked both the intel and the food) and a Poster Slam presentation (boyakasha...).&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:TEI_for_Linguists&amp;diff=16891</id>
		<title>SIG:TEI for Linguists</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:TEI_for_Linguists&amp;diff=16891"/>
		<updated>2022-11-18T11:08:42Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: updates&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Community]]&lt;br /&gt;
[[Category:SIG|Linguistics]]&lt;br /&gt;
[[Category:SIG:Linguistics| ]]&lt;br /&gt;
&lt;br /&gt;
== Aims ==&lt;br /&gt;
&lt;br /&gt;
This Special Interest Group is meant for those interested in linguistics, in the TEI, and in putting the two together.&lt;br /&gt;
&lt;br /&gt;
== Contact details, information ==&lt;br /&gt;
&lt;br /&gt;
* [http://listserv.brown.edu/archives/cgi-bin/wa?A0=TEI-LINGUISTICS Mailing list subscription page] (acts as an unofficial list of members)&lt;br /&gt;
* [https://github.com/LingSIG LingSIG at GitHub]&lt;br /&gt;
* [http://www.tei-c.org/Activities/SIG/TEI_for_Linguists/ Official TEI SIG page]&lt;br /&gt;
* [https://sourceforge.net/projects/lingsig/files/Documents/ LingSIG and related presentations], hosted at SourceForge&lt;br /&gt;
* [http://jenkins-paderborn.tei-c.org/view/LingSIG/ Mr. Jenkins makes sure that our code is nice]&lt;br /&gt;
&lt;br /&gt;
== Activities ==&lt;br /&gt;
The SIG activities include official meetings at TEI-MMs, conference reports and e-mail exchange on the mailing list. As part of its activity, the SIG will attempt to [[SIG:Linguistics - bibliography|track and record]] papers that deal with using various markup standards for the purpose of encoding linguistic analyses and language resources.&lt;br /&gt;
&lt;br /&gt;
=== Tickets/Issues ===&lt;br /&gt;
The &amp;quot;LingSIG&amp;quot; label may be used in the GitHub ticketing system to informally indicate items that either have been posted as a result of LingSIG-related work or that could possibly benefit from extra attention on the group's part. Nothing more beyond that is implied; in particular, the label is not meant to exclude any other SIGs or individuals from the discussion.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/TEIC/TEI/issues?utf8=%E2%9C%93&amp;amp;q=label%3ASIG%3ALingSIG+ relevant GitHub issues]&lt;br /&gt;
* [https://sourceforge.net/p/tei/bugs/search?q=labels:LingSIG Bugs in the LingSIG's scope of interest (at SourceForge, of historical value only)]&lt;br /&gt;
* [https://sourceforge.net/p/tei/feature-requests/search?q=labels:LingSIG Feature Requests in the LingSIG's scope of interest (at SourceForge, of historical value only)]&lt;br /&gt;
&lt;br /&gt;
=== Meetings ===&lt;br /&gt;
* The first official meeting took place in Zadar, on 13 November 2010; see the [[Zadar, 13 November 2010, Agenda|agenda]] and the [[TEI for Linguists - minutes - 13nov10|minutes]]. The meeting was preceded by the LLiZ (Linguistic Lunch in Zadar) and a poster presentation.&lt;br /&gt;
* The second meeting took place in [[LingSIG in Würzburg, Oct 2011|Würzburg, on 14 October 2011]]. The meeting presented the [https://www.zotero.org/groups/tei-lingsig/items LingSIG bibliography maintained as a Zotero library], for everyone to use and add to (please?). Its recurring theme was &amp;quot;keep the SIG aware about the stuff you're doing&amp;quot;. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Piotr%2BAndreas.pdf/download slides])&lt;br /&gt;
* The third meeting took place in College Station, TX. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202012/LingSIG_TEI-MM-2012.pdf/download slides])&lt;br /&gt;
* The fourth meeting took place on Oct 3 2013 in Rome. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202013/LingSIG-2013.pdf/download slides]). It was preceded by a workshop on the &amp;quot;[http://corpora.ids-mannheim.de/queryTEI.html Perspectives on querying TEI-annotated data]&amp;quot;, co-organised by the conveners of the SIG.&lt;br /&gt;
* Due to an interplay of mostly unforeseen factors, the fifth meeting in Chicago was the least fruitful of all. Let's make sure that it will remain an edge case.&lt;br /&gt;
* The sixth meeting took place in [http://tei2015.huma-num.fr/en/ Lyon], on Thursday, October 29th. It featured [[LingSIG in Lyon, Oct 2015|four presentations and discussion]].&lt;br /&gt;
* The [[LingSIG_in_Vienna,_Sep_2016|seventh meeting]] took place in Vienna, during [http://tei2016.acdh.oeaw.ac.at/ TEI-MM-2016], and featured a half-day workshop devoted to lexical and terminological representations.&lt;br /&gt;
* The [[LingSIG_in_Victoria,_Nov_2017|8th meeting]] was held in [http://hcmc.uvic.ca/tei2017/index.php Victoria, BC].&lt;br /&gt;
* The [[LingSIG_in_Tokyo,_Sep_2018|9th meeting]] was held during the [https://tei2018.dhii.asia/ Tokyo conference]. Topic: the limits of the TEI and how to push them.&lt;br /&gt;
* The [[LingSIG in Graz, Sep 2019|10th meeting]]... conGraz!&lt;br /&gt;
* A hiatus followed (guess why) but the LingSIG came back in 2022, in Newcastle-upon-Tyne ([https://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202022/LingSIG-TEI-2022.pdf/download slides]).&lt;br /&gt;
* The upcoming meeting is going to be virtual. It is scheduled for January 19th, 2023 (details on the mailing list and at GitHub)&lt;br /&gt;
&lt;br /&gt;
== Bibliography ==&lt;br /&gt;
The SIG has put together an initial bibliography of works relevant to linguistics and markup (TEI in particular but not only -- the world is full of sources of inspiration). The [[SIG:Linguistics - bibliography |bibliography]] is maintained as a Zotero resource. No one in particular is responsible for maintaining the resource, so everyone is... please feel welcome to help expand it.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
TEI projects with a linguistic focus&amp;lt;br /&amp;gt; &lt;br /&gt;
(''this is an open list'', please feel welcome to edit or make suggestions for inclusion!)&lt;br /&gt;
&lt;br /&gt;
* [[Trafilatura]]&lt;br /&gt;
* [[FreeDict]] &lt;br /&gt;
* [[TXM]]&lt;br /&gt;
* [https://sourceforge.net/projects/octc/ Open Content Text Corpus] (it needs you)&lt;br /&gt;
* [[FSD Validator]] (you need it)&lt;br /&gt;
* [https://github.com/LingSIG GitHub repositories of the LingSIG]&lt;br /&gt;
&lt;br /&gt;
== The most relevant chapters of the Guidelines ==&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/TS.html 8. Transcriptions of Speech]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/DI.html 9. Dictionaries]: we need to have a plan so that the NLP community does consider this as a default vocabulary for representing NLP lexica (e.g. full form lexica)&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CC.html 15. Language Corpora]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/AI.html 17. Simple Analytic Mechanisms]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/FS.html 18. Feature Structures]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/NH.html 20. Non-hierarchical Structures]&lt;br /&gt;
* [http://www.tei-c.org/Vault/GL/P3/TE.htm Terminology chapter, now gone; a half-spoken promise of its return lingers in the air]&lt;br /&gt;
&lt;br /&gt;
== Related SIGs ==&lt;br /&gt;
* [[SIG:Ontologies|Ontologies]]&lt;br /&gt;
* [[SIG:Computer-Mediated_Communication|Computer-Mediated Communication]]&lt;br /&gt;
* [[SIG:Tools|Tools]]&lt;br /&gt;
* [[SIG:Overlap|Overlap]] (inactive)&lt;br /&gt;
&lt;br /&gt;
== Tools - reports of non-TEI linguistic tools working / not working with TEI ==&lt;br /&gt;
* [http://gate.ac.uk/ GATE] doesn't do XML see [http://thread.gmane.org/gmane.comp.ai.gate.general/5257/focus=5301 XML parsing issue: consecutive empty elements mishandled] (report from 2009 -- that may have changed; any news?)&lt;br /&gt;
* See also the TEI-influenced or TEI-based tools: [[Xaira]], [[TXM]], [[wikipedia:Poliqarp|Poliqarp]], [[Philologic]] and [http://zil.ipipan.waw.pl/Anotatornia/ Anotatornia]&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
* Here's [https://listserv.brown.edu/archives/cgi-bin/wa?A2=TEI-L;28ba674e.1007 how it began]&lt;br /&gt;
* TEI Guidelines have their apocrypha as well, here's one on [http://www.tei-c.org/Activities/Workgroups/SO/sow05.xml corpus annotation]. Note that it is absolutely non-normative, included here to give credit to the original Working Group and to provide a platform to either elaborate on or to diverge from.&lt;br /&gt;
&lt;br /&gt;
The first official meeting of the SIG took place on 13 November 2010 at the [http://www.tei-c.org/Membership/Meetings/2010/ TEI-MM in Zadar]. This meeting was preceded by a reconnaissance lunch (we liked both the intel and the food) and a Poster Slam presentation (boyakasha...).&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:TEI_for_Linguists&amp;diff=16800</id>
		<title>SIG:TEI for Linguists</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:TEI_for_Linguists&amp;diff=16800"/>
		<updated>2020-08-06T13:35:00Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: /* Projects */ + Trafilatura&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Community]]&lt;br /&gt;
[[Category:SIG|Linguistics]]&lt;br /&gt;
[[Category:SIG:Linguistics| ]]&lt;br /&gt;
&lt;br /&gt;
== Aims ==&lt;br /&gt;
&lt;br /&gt;
This Special Interest Group is meant for those interested in linguistics, in the TEI, and in putting the two together.&lt;br /&gt;
&lt;br /&gt;
== Contact details, information ==&lt;br /&gt;
&lt;br /&gt;
* [http://listserv.brown.edu/archives/cgi-bin/wa?A0=TEI-LINGUISTICS Mailing list subscription page] (acts as an unofficial list of members)&lt;br /&gt;
* [https://github.com/LingSIG LingSIG at GitHub]&lt;br /&gt;
* [http://www.tei-c.org/Activities/SIG/TEI_for_Linguists/ Official TEI SIG page]&lt;br /&gt;
* [https://sourceforge.net/projects/lingsig/files/Documents/ LingSIG and related presentations], hosted at SourceForge&lt;br /&gt;
* [http://jenkins-paderborn.tei-c.org/view/LingSIG/ Mr. Jenkins makes sure that our code is nice]&lt;br /&gt;
&lt;br /&gt;
== Activities ==&lt;br /&gt;
The SIG activities (will) include official meetings at TEI-MMs, conference reports and e-mail exchange on the mailing list. As part of its activity, the SIG will attempt to [[SIG:Linguistics - bibliography|track and record]] papers that deal with using various markup standards for the purpose of encoding linguistic analyses and language resources.&lt;br /&gt;
&lt;br /&gt;
=== Tickets/Issues ===&lt;br /&gt;
The &amp;quot;LingSIG&amp;quot; label may be used in the GitHub ticketing system to informally indicate items that either have been posted as a result of LingSIG-related work or that could possibly benefit from extra attention on the group's part. Nothing more beyond that is implied; in particular, the label is not meant to exclude any other SIGs or individuals from the discussion.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/TEIC/TEI/issues?utf8=%E2%9C%93&amp;amp;q=label%3ASIG%3ALingSIG+ relevant GitHub issues]&lt;br /&gt;
* [https://sourceforge.net/p/tei/bugs/search?q=labels:LingSIG Bugs in the LingSIG's scope of interest (at SourceForge, of historical value only)]&lt;br /&gt;
* [https://sourceforge.net/p/tei/feature-requests/search?q=labels:LingSIG Feature Requests in the LingSIG's scope of interest (at SourceForge, of historical value only)]&lt;br /&gt;
&lt;br /&gt;
=== Meetings ===&lt;br /&gt;
* The first official meeting took place in Zadar, on 13 November 2010; see the [[Zadar, 13 November 2010, Agenda|agenda]] and the [[TEI for Linguists - minutes - 13nov10|minutes]]. The meeting was preceded by the LLiZ (Linguistic Lunch in Zadar) and a poster presentation.&lt;br /&gt;
* The second meeting took place in [[LingSIG in Würzburg, Oct 2011|Würzburg, on 14 October 2011]]. The meeting presented the [https://www.zotero.org/groups/tei-lingsig/items LingSIG bibliography maintained as a Zotero library], for everyone to use and add to (please?). Its recurring theme was &amp;quot;keep the SIG aware about the stuff you're doing&amp;quot;. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Piotr%2BAndreas.pdf/download slides])&lt;br /&gt;
* The third meeting took place in College Station, TX. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202012/LingSIG_TEI-MM-2012.pdf/download slides])&lt;br /&gt;
* The fourth meeting took place on Oct 3 2013 in Rome. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202013/LingSIG-2013.pdf/download slides]). It was preceded by a workshop on the &amp;quot;[http://corpora.ids-mannheim.de/queryTEI.html Perspectives on querying TEI-annotated data]&amp;quot;, co-organised by the conveners of the SIG.&lt;br /&gt;
* Due to an interplay of mostly unforeseen factors, the fifth meeting in Chicago was the least fruitful of all. Let's make sure that it will remain an edge case.&lt;br /&gt;
* The sixth meeting took place in [http://tei2015.huma-num.fr/en/ Lyon], on Thursday, October 29th. It featured [[LingSIG in Lyon, Oct 2015|four presentations and discussion]].&lt;br /&gt;
* The [[LingSIG_in_Vienna,_Sep_2016|seventh meeting]] took place in Vienna, during [http://tei2016.acdh.oeaw.ac.at/ TEI-MM-2016], and featured a half-day workshop devoted to lexical and terminological representations.&lt;br /&gt;
* The [[LingSIG_in_Victoria,_Nov_2017|8th meeting]] was held in [http://hcmc.uvic.ca/tei2017/index.php Victoria, BC].&lt;br /&gt;
* The [[LingSIG_in_Tokyo,_Sep_2018|9th meeting]] was held during the [https://tei2018.dhii.asia/ Tokyo conference]. Topic: the limits of the TEI and how to push them.&lt;br /&gt;
* The [[LingSIG in Graz, Sep 2019|10th meeting]]... conGraz!&lt;br /&gt;
&lt;br /&gt;
== Bibliography ==&lt;br /&gt;
The SIG has put together an initial bibliography of works relevant to linguistics and markup (TEI in particular but not only -- the world is full of sources of inspiration). The [[SIG:Linguistics - bibliography |bibliography]] is maintained as a Zotero resource. No one in particular is responsible for maintaining the resource, so everyone is... please feel welcome to help expand it.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
TEI projects with a linguistic focus&amp;lt;br /&amp;gt; &lt;br /&gt;
(''this is an open list'', please feel welcome to edit or make suggestions for inclusion!)&lt;br /&gt;
&lt;br /&gt;
* [[Trafilatura]]&lt;br /&gt;
* [[FreeDict]] &lt;br /&gt;
* [[TXM]]&lt;br /&gt;
* [https://sourceforge.net/projects/octc/ Open Content Text Corpus] (it needs you)&lt;br /&gt;
* [[FSD Validator]] (you need it)&lt;br /&gt;
* [https://github.com/LingSIG GitHub repositories of the LingSIG]&lt;br /&gt;
&lt;br /&gt;
== The most relevant chapters of the Guidelines ==&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/TS.html 8. Transcriptions of Speech]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/DI.html 9. Dictionaries]: we need to have a plan so that the NLP community does consider this as a default vocabulary for representing NLP lexica (e.g. full form lexica)&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CC.html 15. Language Corpora]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/AI.html 17. Simple Analytic Mechanisms]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/FS.html 18. Feature Structures]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/NH.html 20. Non-hierarchical Structures]&lt;br /&gt;
* [http://www.tei-c.org/Vault/GL/P3/TE.htm Terminology chapter, now gone; a half-spoken promise of its return lingers in the air]&lt;br /&gt;
&lt;br /&gt;
== Related SIGs ==&lt;br /&gt;
* [[SIG:Ontologies|Ontologies]]&lt;br /&gt;
* [[SIG:Computer-Mediated_Communication|Computer-Mediated Communication]]&lt;br /&gt;
* [[SIG:Tools|Tools]]&lt;br /&gt;
* [[SIG:Overlap|Overlap]] (inactive)&lt;br /&gt;
&lt;br /&gt;
== Tools - reports of non-TEI linguistic tools working / not working with TEI ==&lt;br /&gt;
* [http://gate.ac.uk/ GATE] doesn't do XML see [http://thread.gmane.org/gmane.comp.ai.gate.general/5257/focus=5301 XML parsing issue: consecutive empty elements mishandled] (report from 2009 -- that may have changed; any news?)&lt;br /&gt;
* See also the TEI-influenced or TEI-based tools: [[Xaira]], [[TXM]], [[wikipedia:Poliqarp|Poliqarp]], [[Philologic]] and [http://zil.ipipan.waw.pl/Anotatornia/ Anotatornia]&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
* Here's [https://listserv.brown.edu/archives/cgi-bin/wa?A2=TEI-L;28ba674e.1007 how it began]&lt;br /&gt;
* TEI Guidelines have their apocrypha as well, here's one on [http://www.tei-c.org/Activities/Workgroups/SO/sow05.xml corpus annotation]. Note that it is absolutely non-normative, included here to give credit to the original Working Group and to provide a platform to either elaborate on or to diverge from.&lt;br /&gt;
&lt;br /&gt;
The first official meeting of the SIG took place on 13 November 2010 at the [http://www.tei-c.org/Membership/Meetings/2010/ TEI-MM in Zadar]. This meeting was preceded by a reconnaissance lunch (we liked both the intel and the food) and a Poster Slam presentation (boyakasha...).&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=Trafilatura&amp;diff=16799</id>
		<title>Trafilatura</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=Trafilatura&amp;diff=16799"/>
		<updated>2020-08-06T13:30:15Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: text prepared by Adrien Barbaresi&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Tools]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Development tools]]&lt;br /&gt;
[[Category:Conversion and preprocessing tools]]&lt;br /&gt;
[[Category:Testing and QA tools]]&lt;br /&gt;
[[Category:Analysis tools]]&lt;br /&gt;
[[Category:All-in-one Tools]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Discovering]]&lt;br /&gt;
[[Category:Annotating]]&lt;br /&gt;
[[Category:Sampling]]&lt;br /&gt;
&lt;br /&gt;
== Synopsis ==&lt;br /&gt;
&lt;br /&gt;
Trafilatura is a Python library and command-line tool which processes&lt;br /&gt;
HTML documents and converts the output to plain text, CSV, JSON, XML and&lt;br /&gt;
TEI-XML. It seamlessly downloads, parses, and scrapes web page data: it&lt;br /&gt;
can extract metadata, the main body text and comments while preserving&lt;br /&gt;
part of the text formatting and page structure. It also includes a&lt;br /&gt;
parser and validator for TEI documents.&lt;br /&gt;
&lt;br /&gt;
Distinguishing between whole page and essential parts can help to&lt;br /&gt;
alleviate many quality problems related to web texts as it deals with&lt;br /&gt;
the noise consisting of recurring elements (headers and footers, ads,&lt;br /&gt;
links/blogroll). The extractor has to be precise enough not to miss&lt;br /&gt;
texts or discard valid documents, robust but also reasonably fast. It is&lt;br /&gt;
designed to run in production on millions of web documents.&lt;br /&gt;
&lt;br /&gt;
This effort serves the development of methods for deriving information&lt;br /&gt;
from web documents in order to build text databases for research,&lt;br /&gt;
especially for linguistic analysis and natural language processing as&lt;br /&gt;
part of projects by the Center for Digital Lexicography of German&lt;br /&gt;
([https://zdl.org ZDL] and [https://www.dwds.de DWDS]). A significant&lt;br /&gt;
challenge resides in the ability to extract and pre-process web texts to&lt;br /&gt;
meet scientific expectations: Web corpus construction involves numerous&lt;br /&gt;
design decisions, and this software package helps facilitate collection&lt;br /&gt;
and enhance corpus quality.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
* Robust extraction algorithm preserving&lt;br /&gt;
** Metadata (title, author, date, site name, categories and tags)&lt;br /&gt;
** Structural elements (paragraphs, titles, lists, quotes, code, line breaks, in-line text formatting)&lt;br /&gt;
* Seamless, parallelized online (including page retrieval) or offline processing&lt;br /&gt;
* TEI-XML supported as output format, including document validation&lt;br /&gt;
* Management of download/URL lists (ATOM/RSS feeds, URL queues, blacklisting)&lt;br /&gt;
&lt;br /&gt;
== User commentary ==&lt;br /&gt;
&lt;br /&gt;
'''Please sign all comments.'''&lt;br /&gt;
&lt;br /&gt;
== System requirements ==&lt;br /&gt;
&lt;br /&gt;
The software is tested on MacOS and Linux, it is expected to work on&lt;br /&gt;
Windows as well. It supports all common Python 3 versions (3.4 upwards).&lt;br /&gt;
&lt;br /&gt;
== Source code and licensing ==&lt;br /&gt;
&lt;br /&gt;
Open-source software under [https://www.gnu.org/licenses/gpl-3.0.en.html GNU General Public License v3.0].&lt;br /&gt;
&lt;br /&gt;
Source code homepage: see [https://github.com/adbar/trafilatura GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== Support for TEI ==&lt;br /&gt;
&lt;br /&gt;
Support for TEI P5 out of the box.&lt;br /&gt;
&lt;br /&gt;
== Language(s) ==&lt;br /&gt;
&lt;br /&gt;
* Tool written in Python, use within Python or on the command-line.&lt;br /&gt;
* The documentation is available in English.&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
&lt;br /&gt;
* [https://trafilatura.readthedocs.io/ Documentation]&lt;br /&gt;
* [https://trafilatura.readthedocs.io/en/latest/tutorials.html Tutorials]&lt;br /&gt;
** [https://trafilatura.readthedocs.io/en/latest/tutorial2.html Production and validation of TEI files in Python]&lt;br /&gt;
** [http://adrien.barbaresi.eu/blog/validating-tei-xml-python.html Validating TEI-XML documents]&lt;br /&gt;
&lt;br /&gt;
== Tech support ==&lt;br /&gt;
&lt;br /&gt;
Using this [http://adrien.barbaresi.eu/ contact info] or filing issues&lt;br /&gt;
on the [https://github.com/adbar/trafilatura/issues dedicated page].&lt;br /&gt;
&lt;br /&gt;
== User community ==&lt;br /&gt;
&lt;br /&gt;
[https://github.com/adbar/trafilatura/blob/master/CONTRIBUTING.md Contributions] to code and documentation are welcome! These&lt;br /&gt;
[https://github.com/adbar/trafilatura/graphs/contributors contributors] have already submitted features and fixes.&lt;br /&gt;
&lt;br /&gt;
Tutorial video in German by Simon Meier-Vieracker: [https://www.youtube.com/watch?v=9RPrVE0hHgI Content von Webseiten laden mit Trafilatura].&lt;br /&gt;
&lt;br /&gt;
== History of versions ==&lt;br /&gt;
&lt;br /&gt;
Current version: [https://pypi.org/project/trafilatura/ v0.5.1], 2020-07-15.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/adbar/trafilatura/blob/master/HISTORY.md Change log]&lt;br /&gt;
* [https://github.com/adbar/trafilatura/releases GitHub releases]&lt;br /&gt;
&lt;br /&gt;
== Download and installation ==&lt;br /&gt;
&lt;br /&gt;
Trafilatura is packaged as a software library available from the package&lt;br /&gt;
repository ''PyPI''. As such it can notably be installed with&lt;br /&gt;
&amp;lt;code&amp;gt;pip&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;pipenv&amp;lt;/code&amp;gt;: &amp;lt;code&amp;gt;pip install --upgrade&lt;br /&gt;
trafilatura&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
For more details please read the [https://trafilatura.readthedocs.io/en/latest/installation.html installation documentation].&lt;br /&gt;
&lt;br /&gt;
== Additional notes ==&lt;br /&gt;
&lt;br /&gt;
'''Evaluation and alternatives:''' The extraction focuses on the main&lt;br /&gt;
content, which is usually the part displayed centrally, without the left&lt;br /&gt;
or right bars, the header or the footer, but including potential titles&lt;br /&gt;
and (optionally) comments. This task is also known as ''web scraping'',&lt;br /&gt;
''boilerplate removal'', ''DOM-based content extraction'', ''main&lt;br /&gt;
content identification'', or ''web page cleaning''.&lt;br /&gt;
&lt;br /&gt;
Reproducible results are published on the&lt;br /&gt;
[https://trafilatura.readthedocs.io/en/latest/evaluation.html evaluation page].&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG_in_Graz,_Sep_2019&amp;diff=16692</id>
		<title>LingSIG in Graz, Sep 2019</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG_in_Graz,_Sep_2019&amp;diff=16692"/>
		<updated>2019-09-23T12:14:58Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: cosmetics&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:SIG:Linguistics|G]]&lt;br /&gt;
&lt;br /&gt;
The [[SIG:TEI for Linguists|LingSIG]] is going to meet on Tuesday the 17th at 4 pm, in Seminar Room LS 15.03. The meeting is scheduled to last 1.5 hrs, and will end just in time for us to transfer to the [https://graz-2019.tei-c.org/ conference opening].&lt;br /&gt;
&lt;br /&gt;
The topics to be covered include:&lt;br /&gt;
&lt;br /&gt;
* report on LingSIG activities in the past year&lt;br /&gt;
* information/poll on existing linguistics-related standardisation activities that involve the TEI&lt;br /&gt;
* information on the ongoing ParlaTEI effort by CLARIN researchers&lt;br /&gt;
* query/poll on the further extension of word-level grammatical annotation (@norm and @orig)&lt;br /&gt;
* information on the ongoing standoff-annotation-related activity&lt;br /&gt;
* ... (please bring other topics with you or submit them to the LingSIG list)&lt;br /&gt;
&lt;br /&gt;
== SIG Report ==&lt;br /&gt;
Below is the report that was sent to the Chair of the Technical Council, with an addition at the end.&lt;br /&gt;
&lt;br /&gt;
The LingSIG met on 17.09 with 9 people in attendance. The meeting       was&lt;br /&gt;
convened by Piotr Banski, with Andreas Witt sending his       apologies due&lt;br /&gt;
to being tied up at the same time at a meeting of       the CLARIN Board of&lt;br /&gt;
Directors.&lt;br /&gt;
&lt;br /&gt;
The participants have briefly presented their TEI-related       linguistic&lt;br /&gt;
work done in the year since the last TEI Conference.&lt;br /&gt;
Piotr has informed the LingSIG about the current TEI-related&lt;br /&gt;
initiatives ongoing and starting at ISO TC37 SC4 and within       CLARIN.&lt;br /&gt;
Tomaz Erjavec has briefly presented the Parla-CLARIN initiative,&lt;br /&gt;
which led to discussion on the extent to which it is worthwhile to&lt;br /&gt;
provide translation tools from other formats at this stage of the&lt;br /&gt;
initiative (it is sometimes worth to bring in interesting use       cases),&lt;br /&gt;
and to discussion on the @msd attribute that is part of&lt;br /&gt;
att.linguistic and that lacks the ability to point to extended&lt;br /&gt;
description provided by feature structures. It has been suggested&lt;br /&gt;
that, by analogy to lemmaRef, msdRef could be introduced into&lt;br /&gt;
att.linguistic.&lt;br /&gt;
&lt;br /&gt;
Another point of discussion concerned the postulated addition of       the&lt;br /&gt;
@orig and @norm attributes to the set of basic descriptors at       the&lt;br /&gt;
level of the word. Jack Bowers reminded the group of ticket       #1776&lt;br /&gt;
postulating the addition of &amp;lt;w&amp;gt; to att.lexicographic.       Piotr mentioned&lt;br /&gt;
that, together with Susanne Haaf, they have been       planning to propose&lt;br /&gt;
a new class, call it &amp;quot;att.normalization&amp;quot;,       providing the @norm and&lt;br /&gt;
@orig attributes to both att.lexicographic       and att.linguistic (this&lt;br /&gt;
way, &amp;lt;w&amp;gt; does not get the entire       baggage of att.lexicographic as a&lt;br /&gt;
cumbersome bonus). Piotr       mentioned several cases being made for that&lt;br /&gt;
in the past year on       the TEI-L and github, with well-defined use cases&lt;br /&gt;
provided by       Marin Mueller coming from the MorphAdorned archive of&lt;br /&gt;
Early Modern       English that Martin maintains.&lt;br /&gt;
&lt;br /&gt;
Next, Laurent Romary and Piotr presented the Council's decision       made&lt;br /&gt;
at a meeting held on the previous day, concerning the content       and the&lt;br /&gt;
context of the standOff element. It will be interesting to       see if the&lt;br /&gt;
proposed handling of standOff can be strengthened with       actual use&lt;br /&gt;
cases. Apart from this, the existing stdfSpec github       repository,&lt;br /&gt;
maintained by Laurent and now used by several       projects, will now be&lt;br /&gt;
an alternative TEI customisation (and it       should be relatively&lt;br /&gt;
straightforward to provide scripts for the       translation to the newest&lt;br /&gt;
Council proposal, should someone need       such a translation).&lt;br /&gt;
&lt;br /&gt;
The resolutions of the meeting are as follows:&lt;br /&gt;
* to introduce a ticket proposing @msdRef&lt;br /&gt;
* to finalize work on the existing ticket #1776 concerning @norm       and @orig&lt;br /&gt;
* to inform the linguistic community of the new standOff proposal       and encourage people to try and encode linguistic standoff       annotations in it, and to provide feedback on that to the Council       (possibly via LingSIG)&lt;br /&gt;
&lt;br /&gt;
(What we missed while formulating the resolutions at the end of the meeting is a point raised by Lou Burnard concerning the place in the header where documentation for the specialized attributes can be stored. Please let us keep this very important issue in mind as the next LingSIG task.)&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG_in_Graz,_Sep_2019&amp;diff=16691</id>
		<title>LingSIG in Graz, Sep 2019</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG_in_Graz,_Sep_2019&amp;diff=16691"/>
		<updated>2019-09-23T12:14:31Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: cosmetics&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:SIG:Linguistics|G]]&lt;br /&gt;
&lt;br /&gt;
The [[SIG:TEI for Linguists|LingSIG]] is going to meet on Tuesday the 17th at 4 pm, in Seminar Room LS 15.03. The meeting is scheduled to last 1.5 hrs, and will end just in time for us to transfer to the [https://graz-2019.tei-c.org/ conference opening].&lt;br /&gt;
&lt;br /&gt;
The topics to be covered include:&lt;br /&gt;
&lt;br /&gt;
* report on LingSIG activities in the past year&lt;br /&gt;
* information/poll on existing linguistics-related standardisation activities that involve the TEI&lt;br /&gt;
* information on the ongoing ParlaTEI effort by CLARIN researchers&lt;br /&gt;
* query/poll on the further extension of word-level grammatical annotation (@norm and @orig)&lt;br /&gt;
* information on the ongoing standoff-annotation-related activity&lt;br /&gt;
* ... (please bring other topics with you or submit them to the LingSIG list)&lt;br /&gt;
&lt;br /&gt;
== SIG Report ==&lt;br /&gt;
Below is the report that was sent to the Chair of the Technical Council, with an addition at the end.&lt;br /&gt;
&lt;br /&gt;
The LingSIG met on 17.09 with 9 people in attendance. The meeting       was&lt;br /&gt;
convened by Piotr Banski, with Andreas Witt sending his       apologies due&lt;br /&gt;
to being tied up at the same time at a meeting of       the CLARIN Board of&lt;br /&gt;
Directors.&lt;br /&gt;
&lt;br /&gt;
The participants have briefly presented their TEI-related       linguistic&lt;br /&gt;
work done in the year since the last TEI Conference.&lt;br /&gt;
Piotr has informed the LingSIG about the current TEI-related&lt;br /&gt;
initiatives ongoing and starting at ISO TC37 SC4 and within       CLARIN.&lt;br /&gt;
Tomaz Erjavec has briefly presented the Parla-CLARIN initiative,&lt;br /&gt;
which led to discussion on the extent to which it is worthwhile to&lt;br /&gt;
provide translation tools from other formats at this stage of the&lt;br /&gt;
initiative (it is sometimes worth to bring in interesting use       cases),&lt;br /&gt;
and to discussion on the @msd attribute that is part of&lt;br /&gt;
att.linguistic and that lacks the ability to point to extended&lt;br /&gt;
description provided by feature structures. It has been suggested&lt;br /&gt;
that, by analogy to lemmaRef, msdRef could be introduced into&lt;br /&gt;
att.linguistic.&lt;br /&gt;
&lt;br /&gt;
Another point of discussion concerned the postulated addition of       the&lt;br /&gt;
@orig and @norm attributes to the set of basic descriptors at       the&lt;br /&gt;
level of the word. Jack Bowers reminded the group of ticket       #1776&lt;br /&gt;
postulating the addition of &amp;lt;w&amp;gt; to att.lexicographic.       Piotr mentioned&lt;br /&gt;
that, together with Susanne Haaf, they have been       planning to propose&lt;br /&gt;
a new class, call it &amp;quot;att.normalization&amp;quot;,       providing the @norm and&lt;br /&gt;
@orig attributes to both att.lexicographic       and att.linguistic (this&lt;br /&gt;
way, &amp;lt;w&amp;gt; does not get the entire       baggage of att.lexicographic as a&lt;br /&gt;
cumbersome bonus). Piotr       mentioned several cases being made for that&lt;br /&gt;
in the past year on       the TEI-L and github, with well-defined use cases&lt;br /&gt;
provided by       Marin Mueller coming from the MorphAdorned archive of&lt;br /&gt;
Early Modern       English that Martin maintains.&lt;br /&gt;
&lt;br /&gt;
Next, Laurent Romary and Piotr presented the Council's decision       made&lt;br /&gt;
at a meeting held on the previous day, concerning the content       and the&lt;br /&gt;
context of the standOff element. It will be interesting to       see if the&lt;br /&gt;
proposed handling of standOff can be strengthened with       actual use&lt;br /&gt;
cases. Apart from this, the existing stdfSpec github       repository,&lt;br /&gt;
maintained by Laurent and now used by several       projects, will now be&lt;br /&gt;
an alternative TEI customisation (and it       should be relatively&lt;br /&gt;
straightforward to provide scripts for the       translation to the newest&lt;br /&gt;
Council proposal, should someone need       such a translation).&lt;br /&gt;
&lt;br /&gt;
The resolutions of the meeting are as follows:&lt;br /&gt;
* to introduce a ticket proposing @msdRef&lt;br /&gt;
* to finalize work on the existing ticket #1776 concerning @norm       and @orig&lt;br /&gt;
* to inform the linguistic community of the new standOff proposal       and encourage people to try and encode linguistic standoff       annotations in&lt;br /&gt;
it, and to provide feedback on that to the Council       (possibly via LingSIG)&lt;br /&gt;
&lt;br /&gt;
(What we missed while formulating the resolutions at the end of the meeting is a point raised by Lou Burnard concerning the place in the header where documentation for the specialized attributes can be stored. Please let us keep this very important issue in mind as the next LingSIG task.)&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG_in_Graz,_Sep_2019&amp;diff=16690</id>
		<title>LingSIG in Graz, Sep 2019</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG_in_Graz,_Sep_2019&amp;diff=16690"/>
		<updated>2019-09-23T12:13:48Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: + report&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:SIG:Linguistics|G]]&lt;br /&gt;
&lt;br /&gt;
The [[SIG:TEI for Linguists|LingSIG]] is going to meet on Tuesday the 17th at 4 pm, in Seminar Room LS 15.03. The meeting is scheduled to last 1.5 hrs, and will end just in time for us to transfer to the [https://graz-2019.tei-c.org/ conference opening].&lt;br /&gt;
&lt;br /&gt;
The topics to be covered include:&lt;br /&gt;
&lt;br /&gt;
* report on LingSIG activities in the past year&lt;br /&gt;
* information/poll on existing linguistics-related standardisation activities that involve the TEI&lt;br /&gt;
* information on the ongoing ParlaTEI effort by CLARIN researchers&lt;br /&gt;
* query/poll on the further extension of word-level grammatical annotation (@norm and @orig)&lt;br /&gt;
* information on the ongoing standoff-annotation-related activity&lt;br /&gt;
* ... (please bring other topics with you or submit them to the LingSIG list)&lt;br /&gt;
&lt;br /&gt;
== SIG Report ==&lt;br /&gt;
Below is the report that was sent to the Chair of the Technical Council, with an addition at the end.&lt;br /&gt;
&lt;br /&gt;
The LingSIG met on 17.09 with 9 people in attendance. The meeting       was&lt;br /&gt;
convened by Piotr Banski, with Andreas Witt sending his       apologies due&lt;br /&gt;
to being tied up at the same time at a meeting of       the CLARIN Board of&lt;br /&gt;
Directors.&lt;br /&gt;
&lt;br /&gt;
The participants have briefly presented their TEI-related       linguistic&lt;br /&gt;
work done in the year since the last TEI Conference.&lt;br /&gt;
Piotr has informed the LingSIG about the current TEI-related&lt;br /&gt;
initiatives ongoing and starting at ISO TC37 SC4 and within       CLARIN.&lt;br /&gt;
Tomaz Erjavec has briefly presented the Parla-CLARIN initiative,&lt;br /&gt;
which led to discussion on the extent to which it is worthwhile to&lt;br /&gt;
provide translation tools from other formats at this stage of the&lt;br /&gt;
initiative (it is sometimes worth to bring in interesting use       cases),&lt;br /&gt;
and to discussion on the @msd attribute that is part of&lt;br /&gt;
att.linguistic and that lacks the ability to point to extended&lt;br /&gt;
description provided by feature structures. It has been suggested&lt;br /&gt;
that, by analogy to lemmaRef, msdRef could be introduced into&lt;br /&gt;
att.linguistic.&lt;br /&gt;
&lt;br /&gt;
Another point of discussion concerned the postulated addition of       the&lt;br /&gt;
@orig and @norm attributes to the set of basic descriptors at       the&lt;br /&gt;
level of the word. Jack Bowers reminded the group of ticket       #1776&lt;br /&gt;
postulating the addition of &amp;lt;w&amp;gt; to att.lexicographic.       Piotr mentioned&lt;br /&gt;
that, together with Susanne Haaf, they have been       planning to propose&lt;br /&gt;
a new class, call it &amp;quot;att.normalization&amp;quot;,       providing the @norm and&lt;br /&gt;
@orig attributes to both att.lexicographic       and att.linguistic (this&lt;br /&gt;
way, &amp;lt;w&amp;gt; does not get the entire       baggage of att.lexicographic as a&lt;br /&gt;
cumbersome bonus). Piotr       mentioned several cases being made for that&lt;br /&gt;
in the past year on       the TEI-L and github, with well-defined use cases&lt;br /&gt;
provided by       Marin Mueller coming from the MorphAdorned archive of&lt;br /&gt;
Early Modern       English that Martin maintains.&lt;br /&gt;
&lt;br /&gt;
Next, Laurent Romary and Piotr presented the Council's decision       made&lt;br /&gt;
at a meeting held on the previous day, concerning the content       and the&lt;br /&gt;
context of the standOff element. It will be interesting to       see if the&lt;br /&gt;
proposed handling of standOff can be strengthened with       actual use&lt;br /&gt;
cases. Apart from this, the existing stdfSpec github       repository,&lt;br /&gt;
maintained by Laurent and now used by several       projects, will now be&lt;br /&gt;
an alternative TEI customisation (and it       should be relatively&lt;br /&gt;
straightforward to provide scripts for the       translation to the newest&lt;br /&gt;
Council proposal, should someone need       such a translation).&lt;br /&gt;
&lt;br /&gt;
The resolutions of the meeting are as follows:&lt;br /&gt;
* to introduce a ticket proposing @msdRef&lt;br /&gt;
* to finalize work on the existing ticket #1776 concerning @norm       and @orig&lt;br /&gt;
* to inform the linguistic community of the new standOff proposal       and&lt;br /&gt;
encourage people to try and encode linguistic standoff       annotations in&lt;br /&gt;
it, and to provide feedback on that to the Council       (possibly via&lt;br /&gt;
LingSIG)&lt;br /&gt;
&lt;br /&gt;
(What we missed while formulating the resolutions at the end of the meeting is a point raised by Lou Burnard concerning the place in the header where documentation for the specialized attributes can be stored. Please let us keep this very important issue in mind as the next LingSIG task.)&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG_in_Graz,_Sep_2019&amp;diff=16680</id>
		<title>LingSIG in Graz, Sep 2019</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG_in_Graz,_Sep_2019&amp;diff=16680"/>
		<updated>2019-09-17T10:44:42Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: restructuring&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:SIG:Linguistics|G]]&lt;br /&gt;
&lt;br /&gt;
The [[SIG:TEI for Linguists|LingSIG]] is going to meet on Tuesday the 17th at 4 pm, in Seminar Room LS 15.03. The meeting is scheduled to last 1.5 hrs, and will end just in time for us to transfer to the [https://graz-2019.tei-c.org/ conference opening].&lt;br /&gt;
&lt;br /&gt;
The topics to be covered include:&lt;br /&gt;
&lt;br /&gt;
* report on LingSIG activities in the past year&lt;br /&gt;
* information/poll on existing linguistics-related standardisation activities that involve the TEI&lt;br /&gt;
* information on the ongoing ParlaTEI effort by CLARIN researchers&lt;br /&gt;
* query/poll on the further extension of word-level grammatical annotation (@norm and @orig)&lt;br /&gt;
* information on the ongoing standoff-annotation-related activity&lt;br /&gt;
* ... (please bring other topics with you or submit them to the LingSIG list)&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG_in_Graz,_Sep_2019&amp;diff=16676</id>
		<title>LingSIG in Graz, Sep 2019</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG_in_Graz,_Sep_2019&amp;diff=16676"/>
		<updated>2019-09-16T22:34:39Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: cosmetics / navigation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:SIG:Linguistics|G]]&lt;br /&gt;
&lt;br /&gt;
The [[SIG:TEI for Linguists|LingSIG]] is going to meet on Tuesday the 17th at 4 pm, in Seminar Room LS 15.03. The meeting is scheduled to last 1.5 hrs, and will end just in time for us to transfer to the [https://graz-2019.tei-c.org/ conference opening].&lt;br /&gt;
&lt;br /&gt;
The topics to be covered include:&lt;br /&gt;
&lt;br /&gt;
* report on LingSIG activities so far&lt;br /&gt;
* information on the ongoing ParlaTEI effort by CLARIN researchers&lt;br /&gt;
* information/poll on existing standardisation activities that involve the TEI&lt;br /&gt;
* information on the ongoing standoff-annotation-related activity&lt;br /&gt;
* query/poll on the further extension of word-level grammatical annotation (@norm and @orig)&lt;br /&gt;
* ... (please bring other topics with you or submit them to the LingSIG list)&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG_in_Tokyo,_Sep_2018&amp;diff=16673</id>
		<title>LingSIG in Tokyo, Sep 2018</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG_in_Tokyo,_Sep_2018&amp;diff=16673"/>
		<updated>2019-09-14T18:07:45Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: +category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:SIG:Linguistics|T]]&lt;br /&gt;
The 9th meeting of the LingSIG, Tokyo, Sep 11th, 2018, 10:45, Room B 2,3 (See the overall [https://tei2018.dhii.asia/SIGs SIG meeting schedule].)&lt;br /&gt;
&lt;br /&gt;
Topic:  '''the limits of the TEI and how to push them''' &lt;br /&gt;
&lt;br /&gt;
==== Introduction ====&lt;br /&gt;
Some specialized fields/applications need specialized formats, take Math ML or vector graphics. But the substance of text-oriented studies is by its nature open to linguistic description, even if the results are only used as an auxiliary device to aid searches or literary concordancing.&lt;br /&gt;
&lt;br /&gt;
Is there a point where we should let go and put the TEI aside in favour of specialized linguistic formats? Are there specialized linguistic formats that render the TEI useless? Or can their special features be recast in our familiar vocabulary?&lt;br /&gt;
&lt;br /&gt;
Much depends on the data to be described, and within recent years, we have seen the TEI extended to successfully describe the transcription of spoken language (now a new ISO/TEI published standard) or to handle computer-mediated communication (cf. the progress done in the CMC SIG). At the upcoming meeting, we are going to look at yet another set of linguistic experimental data and confront the question of how naturally it can be handled by the current TEI devices. Apart from that, several recent advances, both accomplished and planned, will be reviewed. As always, we welcome not only linguists but anyone who brushes against language-related issues in their TEI work (which is to say: everyone is welcome, do come over to learn and share!)&lt;br /&gt;
&lt;br /&gt;
==== Agenda ====&lt;br /&gt;
The meeting is going to begin with a presentation by Sophie Repp (University of Cologne, Germany) entitled &amp;quot;Towards an annotation scheme for acceptability judgment data&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Other issues on our traditionally somewhat loose agenda include a sneak peek at the presentation given later on the same day, a potential future ISO/TEI initiative on standardizing lightweight annotation, a ghost of an ancient war haunting att.lexicographic (think `@norm` and `@orig` attributes as the point where we may be politely asked to abandon the TEI wagon), and whatever the group will wish to talk about.&lt;br /&gt;
&lt;br /&gt;
==== Links ====&lt;br /&gt;
These are here basically to avoid the typical &amp;quot;technological breaks&amp;quot; that like to occur when switching laptops.&amp;lt;br/&amp;gt;&lt;br /&gt;
Everyone can edit this space if they wish to share something with others (yes, you need a wiki account or you can send an e-mail to {banski,witt} attt ids-mannheim.de to get your links posted here).&lt;br /&gt;
&lt;br /&gt;
(Don't expect any structure here. Please add links to the bottom so that we can reference them by number.)&lt;br /&gt;
&lt;br /&gt;
#. http://universaldependencies.org/introduction.html&lt;br /&gt;
#. http://deutschestextarchiv.de/book/show/20000  (see &amp;quot;downloads&amp;quot; on the right; 4 MB!)&lt;br /&gt;
#. https://texts.earlyprint.org/works/A83158.xml (&amp;quot;downloads&amp;quot;)&lt;br /&gt;
#. https://github.com/TEIC/TEI/issues/1670&lt;br /&gt;
#. https://github.com/TEIC/TEI/issues/1776&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG_in_Victoria,_Nov_2017&amp;diff=16672</id>
		<title>LingSIG in Victoria, Nov 2017</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG_in_Victoria,_Nov_2017&amp;diff=16672"/>
		<updated>2019-09-14T18:07:26Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: +category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:SIG:Linguistics|V]]&lt;br /&gt;
The 8th LingSIG meeting. Victoria, BC., (Tuesday, 14 Nov, 13:45 UTC-8 = 22:45 CET)&lt;br /&gt;
&lt;br /&gt;
==== Agenda ====&lt;br /&gt;
Convenors: Piotr Bański and Andreas Witt (possibly remotely)&lt;br /&gt;
&lt;br /&gt;
* Welcome + Round of introductions&lt;br /&gt;
* Last year’s goal: lexical/concept description&lt;br /&gt;
** Stefan Pernes: a closer look at [http://hcmc.uvic.ca/tei2017/abstracts/t_109_bowersetal_conceptentry.html TBX-in-TEI]&lt;br /&gt;
** Piotr Bański: a brief look at [https://github.com/LingSIG/Dictionaries (a fragment of) TEI-Lex0] (see also a paper by Bański, Bowers and Erjavec, [https://elex.link/elex2017/wp-content/uploads/2017/09/paper29.pdf &amp;quot;TEI-Lex0 Guidelines for the Encoding of Dictionary Information on Written and Spoken Forms&amp;quot;])&lt;br /&gt;
* Overview of [https://github.com/LingSIG LingSIG@GitHub]&lt;br /&gt;
* Discussion: goals for the coming year, new ideas?&lt;br /&gt;
&lt;br /&gt;
==== Report ====&lt;br /&gt;
The LingSIG met to sum up the past year (spent with a focus on lexical/content description). Stefan Pernes and Piotr Bański presented reports on the progress on, respectively, the concept-oriented side (in the context of ISO TC37 SC3 = TBX serialization in the TEI and the return of the terminology chapter), and on the form-oriented side (in the context of ISO TC37 SC4 -- revision of the LMF and its serialization in the TEI; the ENeL/Parthenos/Dariah initiative on creating baseline encoding for retrodigitized dictionaries called TEI Lex0).&lt;br /&gt;
&lt;br /&gt;
Afterwards, Piotr has presented the ecology of the LingSIG space on GitHub and the mechanics open now for the members to aid in the development of the Guidelines and of the TEI outreach towards the language-resource circles.&lt;br /&gt;
&lt;br /&gt;
We talked about plans for the coming year (the SIG will continue and is hoping for support from the Council; this also extends to the possible space on Jenkins servers, especially if the current maintainers, Martin and Peter, will not be able to accommodate the LingSIG input). We also fully supported Peter Stadler's idea of having designated Council liaisons for SIGs.&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=TEI_for_Linguists_-_minutes_-_13nov10&amp;diff=16671</id>
		<title>TEI for Linguists - minutes - 13nov10</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=TEI_for_Linguists_-_minutes_-_13nov10&amp;diff=16671"/>
		<updated>2019-09-14T18:06:02Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: different sort&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:SIG:Linguistics|Z]]&lt;br /&gt;
&lt;br /&gt;
[[SIG:TEI_for_Linguists|SIG “TEI for Linguists”]] -- meeting 1, minutes&lt;br /&gt;
&lt;br /&gt;
Zadar, 13 Nov 2010, 9 a.m. - 10.30 a.m.&lt;br /&gt;
&lt;br /&gt;
==Presentation of the new SIG ‘TEI for linguists’==&lt;br /&gt;
&lt;br /&gt;
* Linguists have always been involved in the TEI, especially at the beginnings (see ACL and ALLC), Don Walker -- one of the co-founders, was a computational linguist&lt;br /&gt;
* A new generation of linguists more and more interested in using TEI in their work. However the use of the Guidelines is not widespread enough: a lot of linguists (computational, classic) don’t use and don’t know much about TEI:&lt;br /&gt;
**The feature structure mechanisms is widely used, but not the TEI-conformant representations of them;&lt;br /&gt;
**TEI for the transcription of speech is also used rarely..&lt;br /&gt;
*The SIG should be thinking about appropriate PR methods in order to spread the word about TEI also to people who do not usually frequent DH and TEI related conferences. Attentive frequenting of the general TEI list should be essential, in order to catch problems of linguistic nature and invite people to join the SIG (or at least to make sure that they are aware of the existence of the SIG; often it may happen that people from outside the TEI community who would choose not to subscribe to TEI-L may decide to '''[http://listserv.brown.edu/archives/cgi-bin/wa?A0=TEI-LINGUISTICS subscribe to a low-volume, focused LingSIG list]'''.&lt;br /&gt;
&lt;br /&gt;
==Recruiting members==&lt;br /&gt;
&lt;br /&gt;
* Attendees are invited to join the newly created TEI mailing list to discuss relevant topics and follow SIG developments.&lt;br /&gt;
* Introduction of participants: ca. 27 people&lt;br /&gt;
&lt;br /&gt;
==Action plan==&lt;br /&gt;
* Proposals for a short name: Linguistics, LingSIG, LinguistSIG&lt;br /&gt;
** note: at the meeting, we agreed that the SIG already functions under an alias of &amp;quot;Linguistics SIG&amp;quot;, after the meeting, we can observe the short form &amp;quot;LingSIG&amp;quot; getting established (on a par with &amp;quot;MS-SIG&amp;quot;, etc.)&lt;br /&gt;
* Following the MS-SIG experience, a survey on LR is proposed:&lt;br /&gt;
**A page o the wiki will contain a '''[[SIG:Linguistics - bibliography|Bibliography]]''' of articles on relevant topics, where anyone can submit a title (we should aim at having a fullish Bibliography page)&lt;br /&gt;
**An email will be sent to the TEI to invite participation;&lt;br /&gt;
**Categorization of the field of linguistics: endangered languages, typology, transcription, dictionaries, but also ‘GIS in linguistics‘– separate the field of linguistics by categories and fill it with resources we know.&lt;br /&gt;
* Milestones should be set out, priorities listed with approximate and '''realistic''' deadlines (by next meeting, next year, next Guidelines release etc.), what are we going to achieve by the next meeting?&lt;br /&gt;
* Preparing documents:&lt;br /&gt;
**Actual chapter vs. virtual chapter: Virtual chapter, a chapter that is not on the TOC of the guidelines but created along with it, refers to other existing chapters, reuse of existing resources for linguistic needs – customization, recommendation; compile things make it available and see how people react , then create a real chapter out of it.&lt;br /&gt;
**Instead of a virtual chapter we could also prepare Virtual Guidelines, i.e. a version of the Guidelines with things filtered out that are not relevant for linguistics and some additions to focus the linguistic point of view.&lt;br /&gt;
**Idea: We should have a thriving virtual chapter by the next meeting, when we can decide whether there’s definitely the need to a real chapter or an ODD?&lt;br /&gt;
* We need arguments '''why linguists should use the TEI'''. Re-usability – important issue for funders. We need usability of LR to increase. E.g. lexicographers don’t need TEI in their everyday work, they may work in different databases, but they need TEI to preserve their work. The well-documented semantics and documentation style (ODD) as well as the public accessibility of documentation are also factors that should be capitalized on. (As Damir Ćavar put it: we want to make people want to use the TEI for their linguistic/LR projects; that may turn out to be quite a task).&lt;br /&gt;
* We also need to be aware of the limitations of the TEI and know where to stop and hand over some tasks to other communities (thanks to Øyvind Eide for this observation).&lt;br /&gt;
&lt;br /&gt;
==Interfacing other SIGs==&lt;br /&gt;
&lt;br /&gt;
* Tools – check how compatible (potential) linguistic tools are with the TEI (e.g. the [[eXist]] db was mentioned as particularly TEI-friendly), there is a need for more tools; co-operate with the Tools SIG on the identification and possible adaptation of tools for use in the scope of the LingSIG.&lt;br /&gt;
* Music – how they handle annotation of binary files vs. speech corpora&lt;br /&gt;
* Ontologies – grammatical, lexical, participant list in a spoken discourse – some methods may be similar, Sebastian Rahtz’s TEI XML – RDF XML conversion methods.&lt;br /&gt;
* The Overlap SIG has done its job and as such should not be expected to be active, but the particular members of that SIG may be willing to co-operate.&lt;br /&gt;
&lt;br /&gt;
==External demands on the TEI==&lt;br /&gt;
* To simplify (&amp;quot;follow the way of the CES&amp;quot;) or to be more detailed wrt some issues – both probably&lt;br /&gt;
* General recommendations or project specific specification?&lt;br /&gt;
* We don't want to follow links on guidelines, we may want something more friendly&lt;br /&gt;
&lt;br /&gt;
We use markup to annotate resources, there are also annotation standards being developed by ISO TC 37 SC 4 and we want to co-operate with the ISO researchers. In ISO the work focuses on very specific levels, it's not exactly the same community, there are overlaps, but not many. ISO brings strong confidence in computational linguistics, e.g. morpho-syntactic annotation. There is a signed joint agreement between ISO and TEI, so they can exchange data freely.&lt;br /&gt;
&lt;br /&gt;
More topics on mailing list, everyone is invited to join.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
The conveners are grateful to Beata Wójtowicz for taking minutes of the meeting and to Damir Ćavar for making it possible for one of us to participate in the meeting remotely, via skype.&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG_in_Graz,_Sep_2019&amp;diff=16670</id>
		<title>LingSIG in Graz, Sep 2019</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG_in_Graz,_Sep_2019&amp;diff=16670"/>
		<updated>2019-09-14T18:05:46Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: different sort&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:SIG:Linguistics|G]]&lt;br /&gt;
&lt;br /&gt;
The LingSIG is going to meet on Tuesday the 17th at 4 pm, in Seminar Room LS 15.03. The meeting is scheduled to last 1.5 hrs, and will end just in time for us to transfer to the [https://graz-2019.tei-c.org/ conference opening].&lt;br /&gt;
&lt;br /&gt;
The topics to be covered include:&lt;br /&gt;
&lt;br /&gt;
* report on LingSIG activities so far&lt;br /&gt;
* information on the ongoing ParlaTEI effort by CLARIN researchers&lt;br /&gt;
* information/poll on existing standardisation activities that involve the TEI&lt;br /&gt;
* information on the ongoing standoff-annotation-related activity&lt;br /&gt;
* query/poll on the further extension of word-level grammatical annotation (@norm and @orig)&lt;br /&gt;
* ... (please bring other topics with you or submit them to the LingSIG list)&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG_in_Lyon,_Oct_2015&amp;diff=16669</id>
		<title>LingSIG in Lyon, Oct 2015</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG_in_Lyon,_Oct_2015&amp;diff=16669"/>
		<updated>2019-09-14T18:05:32Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: different sort&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:SIG:Linguistics|L]]&lt;br /&gt;
The 6th annual meeting of the [[LingSIG]] took place during the [http://tei2015.huma-num.fr/en/overview/ TEI Conference and Members' Meeting, 2015], on Thursday, October 29th, at Université Lumière Lyon 2 -- Campus Berges du Rhône.&lt;br /&gt;
&lt;br /&gt;
Many thanks to Emmanuelle Morlock for inviting us to use [http://www.univ-lyon2.fr/html/VisiteVirtuelleBDRV3/index.html ''Salle de Colloques''] -- a very nice and cozy room where we were able to comfortably enjoy all the presentations (click on the right of the building profile to switch to the interactive view of the ''Salle'').&lt;br /&gt;
&lt;br /&gt;
=== Programme (29.10, 16:30)===&lt;br /&gt;
* Opening&lt;br /&gt;
* Long presentations:&lt;br /&gt;
** Thomas Schmidt (IDS Mannheim): &amp;quot;[http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202015/LingSIG-2015_Schmidt.pptx/download Now that we have ISO, what are we gonna do? Status report of ISO/DIN WG 6 PWI 24624 – Transcription of spoken language]&amp;quot; [https://plus.google.com/u/0/photos/102369935850358771263/albums/6214014855751801217/6214016306256977650 (photo)]&lt;br /&gt;
** Serge Heiden (ENS de Lyon) and Alexei Lavrentev (Lyon University and CNRS, France): &amp;quot;[http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202015/LingSIG-2015_Heiden%2BLavrentev.pdf/download Building a TEI aware tools Matrix: what about tools for linguists?]&amp;quot; [https://plus.google.com/u/0/photos/+PiotrBanski/albums/6214014855751801217/6214016316944164658 (photo)]&lt;br /&gt;
* Short presentations:&lt;br /&gt;
** Sophie Minon (Ecole Pratique des Hautes Etudes, Paris), Magdalena Turska (University of Oxford): &amp;quot;[http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202015/LingSIG-2015_Minon%2BTurska.pdf/download The LGPN-Ling project: two questions about TEI encoding of the semantic analysis of ancient Greek Personal Names]&amp;quot; [https://plus.google.com/u/0/photos/+PiotrBanski/albums/6214014855751801217/6214016326798237762 (photo)]&lt;br /&gt;
** Piotr Bański and Beata Trawiński (IDS Mannheim): &amp;quot;[http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202015/LingSIG-2015_Banski%2BTrawinski.pdf/download TEI encoding in the CoMParS project]&amp;quot;&lt;br /&gt;
* Closing remarks&lt;br /&gt;
&lt;br /&gt;
=== Visit at ASLAN LabEx (27.10) ===&lt;br /&gt;
Before the LingSIG meeting, Alexei Lavrentev kindly invited the LingSIG and Tools SIG members for a visit at ENS de Lyon, in the ASLAN LabEx (Laboratory of Advanced Studies on Language Complexity), to meet its members working on language corpora or text encoding projects.&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG_in_Vienna,_Sep_2016&amp;diff=16668</id>
		<title>LingSIG in Vienna, Sep 2016</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG_in_Vienna,_Sep_2016&amp;diff=16668"/>
		<updated>2019-09-14T18:05:14Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: different sort&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:SIG:Linguistics|V]]&lt;br /&gt;
The 7th meeting of the LingSIG is going to take place in Vienna, before the [https://www.conftool.net/tei2016/sessions.php TEI Conference and Members' Meeting 2016], on '''September 27th''', between the coffee break and the lunch break, which means '''11 am. -- 12 pm.'''. If you think that this is too short, fear not: this &amp;quot;general meeting&amp;quot; is going to be followed by a half-day workshop. We're meeting in '''Theatersaal (Theatre hall)'''.&lt;br /&gt;
&lt;br /&gt;
=== Preliminary agenda ===&lt;br /&gt;
One of the aims of the meeting will be a presentation of a New Work Item at ISO Technical Committee 37 SC4, informally known as &amp;quot;'''ISO TEIger'''&amp;quot;, a new joint TEI-ISO cooperation on preparing a TEI serialization of the ISO model for syntactic description (ISO 24615-1:2014&lt;br /&gt;
Language resource management -- Syntactic annotation framework (SynAF) -- Part 1: Syntactic model).&lt;br /&gt;
&lt;br /&gt;
'''The agenda is open for proposals from the community.'''&lt;br /&gt;
&lt;br /&gt;
=== Workshop ===&lt;br /&gt;
&lt;br /&gt;
The meeting is going to be followed by a workshop on &amp;quot;[http://tei2016.acdh.oeaw.ac.at/lexinfows Lexical information in the TEI: modelling and markup]&amp;quot;. The workshop is free ''for conference participants'' but registration (via Conftool) is mandatory.&lt;br /&gt;
&lt;br /&gt;
=== Report ===&lt;br /&gt;
[this is a copy of the report send to the Chair of the TEI Technical Council for the purpose of being presented at the &amp;quot;Business Meeting&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;The LingSIG had a business meeting on Tuesday [27 September 2016], with an update from the conveners on the ISO work done in connection with the TEI.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;This meeting was followed by a workshop (the second LingSIG workshop after the &amp;quot;Querying the TEI&amp;quot; event held in Rome in 2013) co-organised by Piotr Bański, Charly Mörth, Laurent Romary and Andreas Witt, and devoted to modelling and description of lexical resources. The talks covered  the history of lexical (and terminological) description in the TEI, selected current use cases and the &amp;quot;future&amp;quot;, understood mostly in connection with the upcoming update of ISO LMF (Lexical Markup Framework) and its serialization in the TEI, as well as with the effort of extending and consolidating the expert pool coming from various directions (TEI, DARIAH, CLARIN, COST ENeL).&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;The second part of the workshop included a lengthy discussion (continued well beyond the initially declared time constraints) chaired by Laurent Romary. One of the outcomes immediately relevant to the SIG was the decision that for the coming year, LingSIG is going to work with a special focus: lexical/concept description. We envision a series of hands-on meetings that should result in several proposals submitted to the Council.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG_in_W%C3%BCrzburg,_Oct_2011&amp;diff=16667</id>
		<title>LingSIG in Würzburg, Oct 2011</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG_in_W%C3%BCrzburg,_Oct_2011&amp;diff=16667"/>
		<updated>2019-09-14T18:04:59Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: different sort&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:SIG:Linguistics|W]]&lt;br /&gt;
Annual meeting of the [[LingSIG]].&lt;br /&gt;
Friday 14 October 2011 11-12.30, Würzburg&lt;br /&gt;
&lt;br /&gt;
== Main outcomes: ==&lt;br /&gt;
&lt;br /&gt;
* [[SIG:Linguistics - bibliography|LingSIG bibliography]] report (Maik Stührenberg and Antonina Werthmann) [[http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Maik%2BAntonina.pdf/download slides] with Zotero info and mini-tutorial]&lt;br /&gt;
* general remarks on the benefits of communication and joint work on SIG-related issues (Piotr Bański, Andreas Witt) [[http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Piotr%2BAndreas.pdf/download slides]]&lt;br /&gt;
* micropresentations + discussion:&lt;br /&gt;
** Werner Wegstein [[http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Werner.pdf/download slides]]&lt;br /&gt;
** Sebastian Drude [[http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Sebastian.pdf/download slides]]&lt;br /&gt;
** Martin Wynne [[http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Martin.pdf/download slides]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://journal.tei-c.org/journal/announcement/view/7 jTEI call for papers]&lt;br /&gt;
&lt;br /&gt;
== Meeting Minutes ==&lt;br /&gt;
&lt;br /&gt;
=== 1. Opening and introductions ===&lt;br /&gt;
&lt;br /&gt;
* Andreas Witt presented a brief introduction of the SIG and its first year of life since the meeting in Zadar.&lt;br /&gt;
* Introduction round&lt;br /&gt;
&lt;br /&gt;
=== 2. Past year activities === &lt;br /&gt;
* TEI-journal issue 3 -- special issue TEI for linguists&lt;br /&gt;
** 4 articles at the moment, 3 more 'promised'&lt;br /&gt;
** further articles may be accepted as well -- do contact us about the deadline arrangements&lt;br /&gt;
* LingSIG bibliography effort: collection of bibliography of works related to the area addressed by SIG, this happened very slowly, we were not able to decide on the form of the bibliography, time was a big issue. The bibliography should help understand the relationship between the TEI and other specifications.&lt;br /&gt;
&lt;br /&gt;
=== 3. LingSIG bibliography ===&lt;br /&gt;
&lt;br /&gt;
* Presentation by Maik Stührenberg and Antonina Werthmann: &lt;br /&gt;
** Zotero Group &amp;quot;TEI-LingSIG&amp;quot; is open for collaboration. &lt;br /&gt;
** Maik gives instructions to setup Zotero (Firefox plugin). The group has main categorizations. There is also a Firefox plugin that does zotero-to-tei. &lt;br /&gt;
** There is also a zotero plugin for word/oo to to import bibliographies from word processors.&lt;br /&gt;
&lt;br /&gt;
* Discussion about zotero-to-tei-exporter plugin:&lt;br /&gt;
** Stefan Majewski who developed the tool (zotero to tei) asks for people to point out bugs before he push the tool to zotero for their standalone version. Send recommendations and suggestions to Stefan (stefan.majewski @ UNIVIE.AC.AT).&lt;br /&gt;
**  L. Romary suggests also a BiblStruct importer. &lt;br /&gt;
**  Open LingSIG zotero group -- issues such as accidental deletion etc., Piotr recommends copying the group library to private library as decentralized backup copy (this is not a perfect solution, but at least one that works)&lt;br /&gt;
&lt;br /&gt;
=== 4. General Issues === &lt;br /&gt;
&lt;br /&gt;
Piotr Bański addresses the attendees with a presentation:&lt;br /&gt;
&lt;br /&gt;
* TEI LingSIG mailing list needs more traffic as a means of communication for the SIG members and a basis for extended cooperation or at least an expression of common stance in issues raised in SF tickets.&lt;br /&gt;
* Reminder of what a SIG 'does' and of how this relates to what SIG conveners can do, and of how important it is for members to know what others do. &lt;br /&gt;
* Do we need a subtitle to better define the SIG, let's discuss this on the mailing list (time was too short for local brainstorming)&lt;br /&gt;
* short discussion about splitting the SIG among varieties of linguistic disciplines -&amp;gt; rejection by both Piotr and Laurent Romary (and possibly the larger part of the group as well)&lt;br /&gt;
* Communication: Andreas Witt: we need to collect information about linguistic projects using the TEI on the LingSIG wiki&lt;br /&gt;
&lt;br /&gt;
=== 5. Micropresentations ===&lt;br /&gt;
(cf. the [[LingSIG: Call for micropresentations|call]])&lt;br /&gt;
* Werner Wegstein [[http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Werner.pdf/download slides]] - Baseline Encoding for Parallel Corpora. &lt;br /&gt;
*:The motivation of the parallel corpora and its function were briefly explained. An example was presented with a call for feedback.  &lt;br /&gt;
&lt;br /&gt;
* Sebastian Drude [[http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Sebastian.pdf/download slides]] - The 'Digital Grammar' Project: Integrating the Wiki/CMS approach with Language Archiving Technology and TEI.&lt;br /&gt;
*:The Project describes the interface between Language description, Computer linguistics and Language documentation. Some of the project's aims are for example to link exemplars to multi-media utterances in a corpus or Lexical units to an online-lexicon or to separate the different levels of the grammatical description. The possibility has been raised to describe the digital grammar with the TEI.&lt;br /&gt;
** TEI LingSIG grant possible for creating documentaion TEI for linguistics / parallel corpora (Lou Burnard)&lt;br /&gt;
&lt;br /&gt;
* Martin Wynne [[http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Martin.pdf/download slides]] &amp;quot;TEI or not TEI?&amp;quot; - presented by Piotr - focused on the advantages and disadvantages of using the TEI, with opinions coming from the heart of the CLARIN project, which has adopted it as one of its endorsed standards. The main question was whether it makes sense to use the TEI. The main disadvantages were the cost and complexity compromises to text integrity.&lt;br /&gt;
&lt;br /&gt;
=== 6. Closing remarks ===&lt;br /&gt;
&lt;br /&gt;
We possibly need two 1.5h slots next time. That, naturally, depends on whether the level of participation remains at least the same, and on whether we have something new to report and discuss '''as a group'''.&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG:_Call_for_micropresentations&amp;diff=16666</id>
		<title>LingSIG: Call for micropresentations</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG:_Call_for_micropresentations&amp;diff=16666"/>
		<updated>2019-09-14T18:04:11Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: different sort&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:SIG:Linguistics|W]]&lt;br /&gt;
A copy of the e-mail sent to the LingSIG list on 6/09/2011:&lt;br /&gt;
&lt;br /&gt;
'''The [[SIG:TEI for Linguists|LingSIG]] meeting (call for micropresentations)'''&lt;br /&gt;
&lt;br /&gt;
Dear All,&lt;br /&gt;
&lt;br /&gt;
This list has been silent for too long while most of us have been&lt;br /&gt;
pursuing our own projects, many of which at least brush against the TEI&lt;br /&gt;
or markup in general, as applied to linguistic description. As we said&lt;br /&gt;
in our meeting last year, having one's own TEI-related project is a&lt;br /&gt;
precondition for a sustainable SIG, but what has been drastically&lt;br /&gt;
missing is exchange with others, and it's high time we did something&lt;br /&gt;
about that, the more so that the TEI of today needs this just as badly&lt;br /&gt;
as some of us need the TEI.&lt;br /&gt;
&lt;br /&gt;
The October TEI-MM [1] will include a meeting of the SIG, on Friday the&lt;br /&gt;
14th, between 11-12:30h, in room ZHSG 1.004. I suggest that we devote a&lt;br /&gt;
part of it to brief presentations of SIG-related projects that we are&lt;br /&gt;
involved in. This is meant primarily to integrate us as a subgroup of&lt;br /&gt;
TEI enthusiasts/practitioners, and the micropresentations (ca. 5-7&lt;br /&gt;
minutes, to be decided based on the number of 'registrants') should&lt;br /&gt;
ideally focus either on the applicability of the current TEI&lt;br /&gt;
recommendations to our research goals or on why and where the TEI failed&lt;br /&gt;
to satisfy them. The proposed presentation format forces brevity and is&lt;br /&gt;
meant to provide fodder for a general group discussion that will follow.&lt;br /&gt;
Further elaboration on these topics will be made possible in the context&lt;br /&gt;
of the special issue of the TEI Journal, a seriously revised call for&lt;br /&gt;
which will be announced shortly.&lt;br /&gt;
&lt;br /&gt;
[1]: http://www.zde.uni-wuerzburg.de/tei_mm_2011/&lt;br /&gt;
&lt;br /&gt;
Please register your interest in participating in this microsession&lt;br /&gt;
directly with me, [ at bansp in the domain of o2.pl ],&lt;br /&gt;
preferably by sketching the theme/title of your intended presentation.&lt;br /&gt;
&lt;br /&gt;
Because of the ongoing vacation season, let the deadline be September&lt;br /&gt;
26, after which I will e-mail everyone involved with information on the&lt;br /&gt;
projected presentation length and post the list of presenters in our&lt;br /&gt;
corner of the TEIWiki.&lt;br /&gt;
&lt;br /&gt;
With best regards and hope for a lively SIG meeting,&lt;br /&gt;
&lt;br /&gt;
:Piotr&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG_in_W%C3%BCrzburg,_Oct_2011&amp;diff=16665</id>
		<title>LingSIG in Würzburg, Oct 2011</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG_in_W%C3%BCrzburg,_Oct_2011&amp;diff=16665"/>
		<updated>2019-09-14T18:02:55Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: housekeeping&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:SIG:Linguistics]]&lt;br /&gt;
Annual meeting of the [[LingSIG]].&lt;br /&gt;
Friday 14 October 2011 11-12.30, Würzburg&lt;br /&gt;
&lt;br /&gt;
== Main outcomes: ==&lt;br /&gt;
&lt;br /&gt;
* [[SIG:Linguistics - bibliography|LingSIG bibliography]] report (Maik Stührenberg and Antonina Werthmann) [[http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Maik%2BAntonina.pdf/download slides] with Zotero info and mini-tutorial]&lt;br /&gt;
* general remarks on the benefits of communication and joint work on SIG-related issues (Piotr Bański, Andreas Witt) [[http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Piotr%2BAndreas.pdf/download slides]]&lt;br /&gt;
* micropresentations + discussion:&lt;br /&gt;
** Werner Wegstein [[http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Werner.pdf/download slides]]&lt;br /&gt;
** Sebastian Drude [[http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Sebastian.pdf/download slides]]&lt;br /&gt;
** Martin Wynne [[http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Martin.pdf/download slides]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://journal.tei-c.org/journal/announcement/view/7 jTEI call for papers]&lt;br /&gt;
&lt;br /&gt;
== Meeting Minutes ==&lt;br /&gt;
&lt;br /&gt;
=== 1. Opening and introductions ===&lt;br /&gt;
&lt;br /&gt;
* Andreas Witt presented a brief introduction of the SIG and its first year of life since the meeting in Zadar.&lt;br /&gt;
* Introduction round&lt;br /&gt;
&lt;br /&gt;
=== 2. Past year activities === &lt;br /&gt;
* TEI-journal issue 3 -- special issue TEI for linguists&lt;br /&gt;
** 4 articles at the moment, 3 more 'promised'&lt;br /&gt;
** further articles may be accepted as well -- do contact us about the deadline arrangements&lt;br /&gt;
* LingSIG bibliography effort: collection of bibliography of works related to the area addressed by SIG, this happened very slowly, we were not able to decide on the form of the bibliography, time was a big issue. The bibliography should help understand the relationship between the TEI and other specifications.&lt;br /&gt;
&lt;br /&gt;
=== 3. LingSIG bibliography ===&lt;br /&gt;
&lt;br /&gt;
* Presentation by Maik Stührenberg and Antonina Werthmann: &lt;br /&gt;
** Zotero Group &amp;quot;TEI-LingSIG&amp;quot; is open for collaboration. &lt;br /&gt;
** Maik gives instructions to setup Zotero (Firefox plugin). The group has main categorizations. There is also a Firefox plugin that does zotero-to-tei. &lt;br /&gt;
** There is also a zotero plugin for word/oo to to import bibliographies from word processors.&lt;br /&gt;
&lt;br /&gt;
* Discussion about zotero-to-tei-exporter plugin:&lt;br /&gt;
** Stefan Majewski who developed the tool (zotero to tei) asks for people to point out bugs before he push the tool to zotero for their standalone version. Send recommendations and suggestions to Stefan (stefan.majewski @ UNIVIE.AC.AT).&lt;br /&gt;
**  L. Romary suggests also a BiblStruct importer. &lt;br /&gt;
**  Open LingSIG zotero group -- issues such as accidental deletion etc., Piotr recommends copying the group library to private library as decentralized backup copy (this is not a perfect solution, but at least one that works)&lt;br /&gt;
&lt;br /&gt;
=== 4. General Issues === &lt;br /&gt;
&lt;br /&gt;
Piotr Bański addresses the attendees with a presentation:&lt;br /&gt;
&lt;br /&gt;
* TEI LingSIG mailing list needs more traffic as a means of communication for the SIG members and a basis for extended cooperation or at least an expression of common stance in issues raised in SF tickets.&lt;br /&gt;
* Reminder of what a SIG 'does' and of how this relates to what SIG conveners can do, and of how important it is for members to know what others do. &lt;br /&gt;
* Do we need a subtitle to better define the SIG, let's discuss this on the mailing list (time was too short for local brainstorming)&lt;br /&gt;
* short discussion about splitting the SIG among varieties of linguistic disciplines -&amp;gt; rejection by both Piotr and Laurent Romary (and possibly the larger part of the group as well)&lt;br /&gt;
* Communication: Andreas Witt: we need to collect information about linguistic projects using the TEI on the LingSIG wiki&lt;br /&gt;
&lt;br /&gt;
=== 5. Micropresentations ===&lt;br /&gt;
(cf. the [[LingSIG: Call for micropresentations|call]])&lt;br /&gt;
* Werner Wegstein [[http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Werner.pdf/download slides]] - Baseline Encoding for Parallel Corpora. &lt;br /&gt;
*:The motivation of the parallel corpora and its function were briefly explained. An example was presented with a call for feedback.  &lt;br /&gt;
&lt;br /&gt;
* Sebastian Drude [[http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Sebastian.pdf/download slides]] - The 'Digital Grammar' Project: Integrating the Wiki/CMS approach with Language Archiving Technology and TEI.&lt;br /&gt;
*:The Project describes the interface between Language description, Computer linguistics and Language documentation. Some of the project's aims are for example to link exemplars to multi-media utterances in a corpus or Lexical units to an online-lexicon or to separate the different levels of the grammatical description. The possibility has been raised to describe the digital grammar with the TEI.&lt;br /&gt;
** TEI LingSIG grant possible for creating documentaion TEI for linguistics / parallel corpora (Lou Burnard)&lt;br /&gt;
&lt;br /&gt;
* Martin Wynne [[http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Martin.pdf/download slides]] &amp;quot;TEI or not TEI?&amp;quot; - presented by Piotr - focused on the advantages and disadvantages of using the TEI, with opinions coming from the heart of the CLARIN project, which has adopted it as one of its endorsed standards. The main question was whether it makes sense to use the TEI. The main disadvantages were the cost and complexity compromises to text integrity.&lt;br /&gt;
&lt;br /&gt;
=== 6. Closing remarks ===&lt;br /&gt;
&lt;br /&gt;
We possibly need two 1.5h slots next time. That, naturally, depends on whether the level of participation remains at least the same, and on whether we have something new to report and discuss '''as a group'''.&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG_in_Graz,_Sep_2019&amp;diff=16664</id>
		<title>LingSIG in Graz, Sep 2019</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG_in_Graz,_Sep_2019&amp;diff=16664"/>
		<updated>2019-09-14T17:58:00Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: a bit more info&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:SIG:Linguistics]]&lt;br /&gt;
&lt;br /&gt;
The LingSIG is going to meet on Tuesday the 17th at 4 pm, in Seminar Room LS 15.03. The meeting is scheduled to last 1.5 hrs, and will end just in time for us to transfer to the [https://graz-2019.tei-c.org/ conference opening].&lt;br /&gt;
&lt;br /&gt;
The topics to be covered include:&lt;br /&gt;
&lt;br /&gt;
* report on LingSIG activities so far&lt;br /&gt;
* information on the ongoing ParlaTEI effort by CLARIN researchers&lt;br /&gt;
* information/poll on existing standardisation activities that involve the TEI&lt;br /&gt;
* information on the ongoing standoff-annotation-related activity&lt;br /&gt;
* query/poll on the further extension of word-level grammatical annotation (@norm and @orig)&lt;br /&gt;
* ... (please bring other topics with you or submit them to the LingSIG list)&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:TEI_for_Linguists&amp;diff=16663</id>
		<title>SIG:TEI for Linguists</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:TEI_for_Linguists&amp;diff=16663"/>
		<updated>2019-09-14T13:40:18Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: /* Meetings */ +1&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Community]]&lt;br /&gt;
[[Category:SIG|Linguistics]]&lt;br /&gt;
[[Category:SIG:Linguistics| ]]&lt;br /&gt;
&lt;br /&gt;
== Aims ==&lt;br /&gt;
&lt;br /&gt;
This Special Interest Group is meant for those interested in linguistics, in the TEI, and in putting the two together.&lt;br /&gt;
&lt;br /&gt;
== Contact details, information ==&lt;br /&gt;
&lt;br /&gt;
* [http://listserv.brown.edu/archives/cgi-bin/wa?A0=TEI-LINGUISTICS Mailing list subscription page] (acts as an unofficial list of members)&lt;br /&gt;
* [https://github.com/LingSIG LingSIG at GitHub]&lt;br /&gt;
* [http://www.tei-c.org/Activities/SIG/TEI_for_Linguists/ Official TEI SIG page]&lt;br /&gt;
* [https://sourceforge.net/projects/lingsig/files/Documents/ LingSIG and related presentations], hosted at SourceForge&lt;br /&gt;
* [http://jenkins-paderborn.tei-c.org/view/LingSIG/ Mr. Jenkins makes sure that our code is nice]&lt;br /&gt;
&lt;br /&gt;
== Activities ==&lt;br /&gt;
The SIG activities (will) include official meetings at TEI-MMs, conference reports and e-mail exchange on the mailing list. As part of its activity, the SIG will attempt to [[SIG:Linguistics - bibliography|track and record]] papers that deal with using various markup standards for the purpose of encoding linguistic analyses and language resources.&lt;br /&gt;
&lt;br /&gt;
=== Tickets/Issues ===&lt;br /&gt;
The &amp;quot;LingSIG&amp;quot; label may be used in the GitHub ticketing system to informally indicate items that either have been posted as a result of LingSIG-related work or that could possibly benefit from extra attention on the group's part. Nothing more beyond that is implied; in particular, the label is not meant to exclude any other SIGs or individuals from the discussion.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/TEIC/TEI/issues?utf8=%E2%9C%93&amp;amp;q=label%3ASIG%3ALingSIG+ relevant GitHub issues]&lt;br /&gt;
* [https://sourceforge.net/p/tei/bugs/search?q=labels:LingSIG Bugs in the LingSIG's scope of interest (at SourceForge, of historical value only)]&lt;br /&gt;
* [https://sourceforge.net/p/tei/feature-requests/search?q=labels:LingSIG Feature Requests in the LingSIG's scope of interest (at SourceForge, of historical value only)]&lt;br /&gt;
&lt;br /&gt;
=== Meetings ===&lt;br /&gt;
* The first official meeting took place in Zadar, on 13 November 2010; see the [[Zadar, 13 November 2010, Agenda|agenda]] and the [[TEI for Linguists - minutes - 13nov10|minutes]]. The meeting was preceded by the LLiZ (Linguistic Lunch in Zadar) and a poster presentation.&lt;br /&gt;
* The second meeting took place in [[LingSIG in Würzburg, Oct 2011|Würzburg, on 14 October 2011]]. The meeting presented the [https://www.zotero.org/groups/tei-lingsig/items LingSIG bibliography maintained as a Zotero library], for everyone to use and add to (please?). Its recurring theme was &amp;quot;keep the SIG aware about the stuff you're doing&amp;quot;. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Piotr%2BAndreas.pdf/download slides])&lt;br /&gt;
* The third meeting took place in College Station, TX. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202012/LingSIG_TEI-MM-2012.pdf/download slides])&lt;br /&gt;
* The fourth meeting took place on Oct 3 2013 in Rome. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202013/LingSIG-2013.pdf/download slides]). It was preceded by a workshop on the &amp;quot;[http://corpora.ids-mannheim.de/queryTEI.html Perspectives on querying TEI-annotated data]&amp;quot;, co-organised by the conveners of the SIG.&lt;br /&gt;
* Due to an interplay of mostly unforeseen factors, the fifth meeting in Chicago was the least fruitful of all. Let's make sure that it will remain an edge case.&lt;br /&gt;
* The sixth meeting took place in [http://tei2015.huma-num.fr/en/ Lyon], on Thursday, October 29th. It featured [[LingSIG in Lyon, Oct 2015|four presentations and discussion]].&lt;br /&gt;
* The [[LingSIG_in_Vienna,_Sep_2016|seventh meeting]] took place in Vienna, during [http://tei2016.acdh.oeaw.ac.at/ TEI-MM-2016], and featured a half-day workshop devoted to lexical and terminological representations.&lt;br /&gt;
* The [[LingSIG_in_Victoria,_Nov_2017|8th meeting]] was held in [http://hcmc.uvic.ca/tei2017/index.php Victoria, BC].&lt;br /&gt;
* The [[LingSIG_in_Tokyo,_Sep_2018|9th meeting]] was held during the [https://tei2018.dhii.asia/ Tokyo conference]. Topic: the limits of the TEI and how to push them.&lt;br /&gt;
* The [[LingSIG in Graz, Sep 2019|10th meeting]]... conGraz!&lt;br /&gt;
&lt;br /&gt;
== Bibliography ==&lt;br /&gt;
The SIG has put together an initial bibliography of works relevant to linguistics and markup (TEI in particular but not only -- the world is full of sources of inspiration). The [[SIG:Linguistics - bibliography |bibliography]] is maintained as a Zotero resource. No one in particular is responsible for maintaining the resource, so everyone is... please feel welcome to help expand it.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
TEI projects with a linguistic focus&amp;lt;br /&amp;gt; &lt;br /&gt;
(''this is an open list'', please feel welcome to edit or make suggestions for inclusion!)&lt;br /&gt;
&lt;br /&gt;
* [[FreeDict]] &lt;br /&gt;
* [[TXM]]&lt;br /&gt;
* [https://sourceforge.net/projects/octc/ Open Content Text Corpus] (it needs you)&lt;br /&gt;
* [[FSD Validator]] (you need it)&lt;br /&gt;
* [https://github.com/LingSIG GitHub repositories of the LingSIG]&lt;br /&gt;
&lt;br /&gt;
== The most relevant chapters of the Guidelines ==&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/TS.html 8. Transcriptions of Speech]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/DI.html 9. Dictionaries]: we need to have a plan so that the NLP community does consider this as a default vocabulary for representing NLP lexica (e.g. full form lexica)&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CC.html 15. Language Corpora]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/AI.html 17. Simple Analytic Mechanisms]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/FS.html 18. Feature Structures]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/NH.html 20. Non-hierarchical Structures]&lt;br /&gt;
* [http://www.tei-c.org/Vault/GL/P3/TE.htm Terminology chapter, now gone; a half-spoken promise of its return lingers in the air]&lt;br /&gt;
&lt;br /&gt;
== Related SIGs ==&lt;br /&gt;
* [[SIG:Ontologies|Ontologies]]&lt;br /&gt;
* [[SIG:Computer-Mediated_Communication|Computer-Mediated Communication]]&lt;br /&gt;
* [[SIG:Tools|Tools]]&lt;br /&gt;
* [[SIG:Overlap|Overlap]] (inactive)&lt;br /&gt;
&lt;br /&gt;
== Tools - reports of non-TEI linguistic tools working / not working with TEI ==&lt;br /&gt;
* [http://gate.ac.uk/ GATE] doesn't do XML see [http://thread.gmane.org/gmane.comp.ai.gate.general/5257/focus=5301 XML parsing issue: consecutive empty elements mishandled] (report from 2009 -- that may have changed; any news?)&lt;br /&gt;
* See also the TEI-influenced or TEI-based tools: [[Xaira]], [[TXM]], [[wikipedia:Poliqarp|Poliqarp]], [[Philologic]] and [http://zil.ipipan.waw.pl/Anotatornia/ Anotatornia]&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
* Here's [https://listserv.brown.edu/archives/cgi-bin/wa?A2=TEI-L;28ba674e.1007 how it began]&lt;br /&gt;
* TEI Guidelines have their apocrypha as well, here's one on [http://www.tei-c.org/Activities/Workgroups/SO/sow05.xml corpus annotation]. Note that it is absolutely non-normative, included here to give credit to the original Working Group and to provide a platform to either elaborate on or to diverge from.&lt;br /&gt;
&lt;br /&gt;
The first official meeting of the SIG took place on 13 November 2010 at the [http://www.tei-c.org/Membership/Meetings/2010/ TEI-MM in Zadar]. This meeting was preceded by a reconnaissance lunch (we liked both the intel and the food) and a Poster Slam presentation (boyakasha...).&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG_in_Graz,_Sep_2019&amp;diff=16662</id>
		<title>LingSIG in Graz, Sep 2019</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG_in_Graz,_Sep_2019&amp;diff=16662"/>
		<updated>2019-09-14T00:33:11Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: the 10th meeting... conGraz!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:SIG:Linguistics]]&lt;br /&gt;
&lt;br /&gt;
The LingSIG is going to meet on Tuesday the 17th at 4 pm, in Seminar Room LS 15.03.&lt;br /&gt;
&lt;br /&gt;
The topics to be covered include:&lt;br /&gt;
&lt;br /&gt;
* report on LingSIG activities so far&lt;br /&gt;
* information on the ongoing ParlaTEI effort by CLARIN researchers&lt;br /&gt;
* information on the ongoing standoff-annotation-related activity&lt;br /&gt;
* query on the further extension of word-level grammatical annotation (@norm and @orig)&lt;br /&gt;
* ... (please bring other topics with you or submit them to the LingSIG list)&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:TEI_for_Linguists&amp;diff=16523</id>
		<title>SIG:TEI for Linguists</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:TEI_for_Linguists&amp;diff=16523"/>
		<updated>2019-05-20T12:21:02Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: update&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Community]]&lt;br /&gt;
[[Category:SIG|Linguistics]]&lt;br /&gt;
[[Category:SIG:Linguistics| ]]&lt;br /&gt;
&lt;br /&gt;
== Aims ==&lt;br /&gt;
&lt;br /&gt;
This Special Interest Group is meant for those interested in linguistics, in the TEI, and in putting the two together.&lt;br /&gt;
&lt;br /&gt;
== Contact details, information ==&lt;br /&gt;
&lt;br /&gt;
* [http://listserv.brown.edu/archives/cgi-bin/wa?A0=TEI-LINGUISTICS Mailing list subscription page] (acts as an unofficial list of members)&lt;br /&gt;
* [https://github.com/LingSIG LingSIG at GitHub]&lt;br /&gt;
* [http://www.tei-c.org/Activities/SIG/TEI_for_Linguists/ Official TEI SIG page]&lt;br /&gt;
* [https://sourceforge.net/projects/lingsig/files/Documents/ LingSIG and related presentations], hosted at SourceForge&lt;br /&gt;
* [http://jenkins-paderborn.tei-c.org/view/LingSIG/ Mr. Jenkins makes sure that our code is nice]&lt;br /&gt;
&lt;br /&gt;
== Activities ==&lt;br /&gt;
The SIG activities (will) include official meetings at TEI-MMs, conference reports and e-mail exchange on the mailing list. As part of its activity, the SIG will attempt to [[SIG:Linguistics - bibliography|track and record]] papers that deal with using various markup standards for the purpose of encoding linguistic analyses and language resources.&lt;br /&gt;
&lt;br /&gt;
=== Tickets/Issues ===&lt;br /&gt;
The &amp;quot;LingSIG&amp;quot; label may be used in the GitHub ticketing system to informally indicate items that either have been posted as a result of LingSIG-related work or that could possibly benefit from extra attention on the group's part. Nothing more beyond that is implied; in particular, the label is not meant to exclude any other SIGs or individuals from the discussion.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/TEIC/TEI/issues?utf8=%E2%9C%93&amp;amp;q=label%3ASIG%3ALingSIG+ relevant GitHub issues]&lt;br /&gt;
* [https://sourceforge.net/p/tei/bugs/search?q=labels:LingSIG Bugs in the LingSIG's scope of interest (at SourceForge, of historical value only)]&lt;br /&gt;
* [https://sourceforge.net/p/tei/feature-requests/search?q=labels:LingSIG Feature Requests in the LingSIG's scope of interest (at SourceForge, of historical value only)]&lt;br /&gt;
&lt;br /&gt;
=== Meetings ===&lt;br /&gt;
* The first official meeting took place in Zadar, on 13 November 2010; see the [[Zadar, 13 November 2010, Agenda|agenda]] and the [[TEI for Linguists - minutes - 13nov10|minutes]]. The meeting was preceded by the LLiZ (Linguistic Lunch in Zadar) and a poster presentation.&lt;br /&gt;
* The second meeting took place in [[LingSIG in Würzburg, Oct 2011|Würzburg, on 14 October 2011]]. The meeting presented the [https://www.zotero.org/groups/tei-lingsig/items LingSIG bibliography maintained as a Zotero library], for everyone to use and add to (please?). Its recurring theme was &amp;quot;keep the SIG aware about the stuff you're doing&amp;quot;. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Piotr%2BAndreas.pdf/download slides])&lt;br /&gt;
* The third meeting took place in College Station, TX. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202012/LingSIG_TEI-MM-2012.pdf/download slides])&lt;br /&gt;
* The fourth meeting took place on Oct 3 2013 in Rome. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202013/LingSIG-2013.pdf/download slides]). It was preceded by a workshop on the &amp;quot;[http://corpora.ids-mannheim.de/queryTEI.html Perspectives on querying TEI-annotated data]&amp;quot;, co-organised by the conveners of the SIG.&lt;br /&gt;
* Due to an interplay of mostly unforeseen factors, the fifth meeting in Chicago was the least fruitful of all. Let's make sure that it will remain an edge case.&lt;br /&gt;
* The sixth meeting took place in [http://tei2015.huma-num.fr/en/ Lyon], on Thursday, October 29th. It featured [[LingSIG in Lyon, Oct 2015|four presentations and discussion]].&lt;br /&gt;
* The [[LingSIG_in_Vienna,_Sep_2016|seventh meeting]] took place in Vienna, during [http://tei2016.acdh.oeaw.ac.at/ TEI-MM-2016], and featured a half-day workshop devoted to lexical and terminological representations.&lt;br /&gt;
* The [[LingSIG_in_Victoria,_Nov_2017|8th meeting]] was held in [http://hcmc.uvic.ca/tei2017/index.php Victoria, BC].&lt;br /&gt;
* The [[LingSIG_in_Tokyo,_Sep_2018|9th meeting]] was held during the [https://tei2018.dhii.asia/ Tokyo conference]. Topic: the limits of the TEI and how to push them.&lt;br /&gt;
&lt;br /&gt;
== Bibliography ==&lt;br /&gt;
The SIG has put together an initial bibliography of works relevant to linguistics and markup (TEI in particular but not only -- the world is full of sources of inspiration). The [[SIG:Linguistics - bibliography |bibliography]] is maintained as a Zotero resource. No one in particular is responsible for maintaining the resource, so everyone is... please feel welcome to help expand it.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
TEI projects with a linguistic focus&amp;lt;br /&amp;gt; &lt;br /&gt;
(''this is an open list'', please feel welcome to edit or make suggestions for inclusion!)&lt;br /&gt;
&lt;br /&gt;
* [[FreeDict]] &lt;br /&gt;
* [[TXM]]&lt;br /&gt;
* [https://sourceforge.net/projects/octc/ Open Content Text Corpus] (it needs you)&lt;br /&gt;
* [[FSD Validator]] (you need it)&lt;br /&gt;
* [https://github.com/LingSIG GitHub repositories of the LingSIG]&lt;br /&gt;
&lt;br /&gt;
== The most relevant chapters of the Guidelines ==&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/TS.html 8. Transcriptions of Speech]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/DI.html 9. Dictionaries]: we need to have a plan so that the NLP community does consider this as a default vocabulary for representing NLP lexica (e.g. full form lexica)&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CC.html 15. Language Corpora]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/AI.html 17. Simple Analytic Mechanisms]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/FS.html 18. Feature Structures]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/NH.html 20. Non-hierarchical Structures]&lt;br /&gt;
* [http://www.tei-c.org/Vault/GL/P3/TE.htm Terminology chapter, now gone; a half-spoken promise of its return lingers in the air]&lt;br /&gt;
&lt;br /&gt;
== Related SIGs ==&lt;br /&gt;
* [[SIG:Ontologies|Ontologies]]&lt;br /&gt;
* [[SIG:Computer-Mediated_Communication|Computer-Mediated Communication]]&lt;br /&gt;
* [[SIG:Tools|Tools]]&lt;br /&gt;
* [[SIG:Overlap|Overlap]] (inactive)&lt;br /&gt;
&lt;br /&gt;
== Tools - reports of non-TEI linguistic tools working / not working with TEI ==&lt;br /&gt;
* [http://gate.ac.uk/ GATE] doesn't do XML see [http://thread.gmane.org/gmane.comp.ai.gate.general/5257/focus=5301 XML parsing issue: consecutive empty elements mishandled] (report from 2009 -- that may have changed; any news?)&lt;br /&gt;
* See also the TEI-influenced or TEI-based tools: [[Xaira]], [[TXM]], [[wikipedia:Poliqarp|Poliqarp]], [[Philologic]] and [http://zil.ipipan.waw.pl/Anotatornia/ Anotatornia]&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
* Here's [https://listserv.brown.edu/archives/cgi-bin/wa?A2=TEI-L;28ba674e.1007 how it began]&lt;br /&gt;
* TEI Guidelines have their apocrypha as well, here's one on [http://www.tei-c.org/Activities/Workgroups/SO/sow05.xml corpus annotation]. Note that it is absolutely non-normative, included here to give credit to the original Working Group and to provide a platform to either elaborate on or to diverge from.&lt;br /&gt;
&lt;br /&gt;
The first official meeting of the SIG took place on 13 November 2010 at the [http://www.tei-c.org/Membership/Meetings/2010/ TEI-MM in Zadar]. This meeting was preceded by a reconnaissance lunch (we liked both the intel and the food) and a Poster Slam presentation (boyakasha...).&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=User:Andreas_Kuczera&amp;diff=16461</id>
		<title>User:Andreas Kuczera</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=User:Andreas_Kuczera&amp;diff=16461"/>
		<updated>2019-01-09T14:58:18Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: Creating user page with biography of new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andreas Kuczera studied physics and history in Giessen, and completed his doctorate in medieval history regarding the agricultural constitution of the Cistercian monastery in Arnsburg, Germany. He then worked for five years on the DFG project Regesta Imperii Online, which provided the entire Regesta Imperii as full text on the Internet. Afterwards, he moved to the science administration department of the Academy of Sciences and Literature in Mainz. Since 2012, he has been working in the Regesta Imperii project primarily on new application perspectives for digital research methods in historical studies. Actually he is involved in developing new methods in graph technologies for the digital humanities (http://www.graphentechnologien.de).&lt;br /&gt;
&lt;br /&gt;
[[Category:Users]]&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=User_talk:Andreas_Kuczera&amp;diff=16462</id>
		<title>User talk:Andreas Kuczera</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=User_talk:Andreas_Kuczera&amp;diff=16462"/>
		<updated>2019-01-09T14:58:18Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to ''TEIWiki''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [[Help:Contents|help pages]].&lt;br /&gt;
Again, welcome and have fun! [[User:Piotr Banski|Piotr]] 14:58, 9 January 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=User:Gimena_del_Rio_Riande&amp;diff=16446</id>
		<title>User:Gimena del Rio Riande</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=User:Gimena_del_Rio_Riande&amp;diff=16446"/>
		<updated>2018-12-10T22:45:08Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: Creating user page with biography of new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Researcher at the Seminario de Edicion y Crítica Textual (SECRIT-IIBICRIT) of the National Scientific and Technical Research Council (CONICET. Buenos Aires, Argentina) and External Professor at LINHD-UNED (Madrid) and the University of Buenos Aires. MA and PhD in Romance Philology (Universidad Complutense de Madrid) with a critical edition of King Dinis of Portugal’s Songbook (Texto y contxto: El Cancionero del rey Don Denis de Portugal: estudio filológico, edición crítica y anotación. Summa cum Laude), her main academic interests deal with Digital Scholarly Edition, the use, and methodologies of scholarly digital tools as “situated practices”, and the interaction of the global and the local in the development of academic disciplines. She has been working since 2013 in creating and working with different DH communities of practice in Latin America and Spain, especially in Argentina, where she organized the first Digital Humanities Conference in 2014 and has been coordinating DH initiatives and events since then. She is, among others, the co-founder of the first Spanish Digital Humanities journal, the Revista de Humanidades Digitales (RHD), vicepresident of the Asociación Argentina de Humanidades Digitales (AAHD) and member of the Board of Directors of FORCE11, Pelagios Commons Committee, vocal at Humanidades Digitales Hispánicas Association, and member the board of editors at Hypothèses/Open Edition, Open Methods-DARIAH, Revista Relaciones (México), Bibliographica (México) and Digital Studies/Le Champ Numérique (Canada). She directs the first Argentinian DH Lab , Humanidades Digitales CAICYT Lab.&lt;br /&gt;
&lt;br /&gt;
[[Category:Users]]&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=User_talk:Gimena_del_Rio_Riande&amp;diff=16447</id>
		<title>User talk:Gimena del Rio Riande</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=User_talk:Gimena_del_Rio_Riande&amp;diff=16447"/>
		<updated>2018-12-10T22:45:08Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to ''TEIWiki''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [[Help:Contents|help pages]].&lt;br /&gt;
Again, welcome and have fun! [[User:Piotr Banski|Piotr]] 22:45, 10 December 2018 (UTC)&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=User:Satoru_Nakamura&amp;diff=16402</id>
		<title>User:Satoru Nakamura</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=User:Satoru_Nakamura&amp;diff=16402"/>
		<updated>2018-10-02T01:12:20Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: Creating user page with biography of new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Satoru Nakamura, Ph.D, is an assistant professor at the department of Information Technology Center of the University of Tokyo. His main research interest is development  and  utilization of  digital  archives. &lt;br /&gt;
He is promoting  the  development  of  digital archives  of  academic  research  resources  and conducting  research  on  methodologies  related to  the  creation,  preservation,  and  provision  of the  data  in  those  archives.  Especially, he played a central role in the digitization and disclosure of the technical documents left by Yuzuru Hiraga who was the president of Tokyo Imperial University and the vice-admiral in the shipbuilding division of the Imperial Japanese Navy. In addition, he is currently engaged in developing digital archives of various materials of the University of Tokyo Library.&lt;br /&gt;
He  also  aims  to  contribute  to  the  creation  of new  knowledge in humanities  research by utilizing  digital  archives  and  information technology, such as Linked Data, Ontology, IIIF and TEI.&lt;br /&gt;
&lt;br /&gt;
[[Category:Users]]&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=User_talk:Satoru_Nakamura&amp;diff=16403</id>
		<title>User talk:Satoru Nakamura</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=User_talk:Satoru_Nakamura&amp;diff=16403"/>
		<updated>2018-10-02T01:12:20Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to ''TEIWiki''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [[Help:Contents|help pages]].&lt;br /&gt;
Again, welcome and have fun! [[User:Piotr Banski|Piotr]] 01:12, 2 October 2018 (UTC)&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG_in_Tokyo,_Sep_2018&amp;diff=16395</id>
		<title>LingSIG in Tokyo, Sep 2018</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG_in_Tokyo,_Sep_2018&amp;diff=16395"/>
		<updated>2018-09-11T03:33:45Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The 9th meeting of the LingSIG, Tokyo, Sep 11th, 2018, 10:45, Room B 2,3 (See the overall [https://tei2018.dhii.asia/SIGs SIG meeting schedule].)&lt;br /&gt;
&lt;br /&gt;
Topic:  '''the limits of the TEI and how to push them''' &lt;br /&gt;
&lt;br /&gt;
==== Introduction ====&lt;br /&gt;
Some specialized fields/applications need specialized formats, take Math ML or vector graphics. But the substance of text-oriented studies is by its nature open to linguistic description, even if the results are only used as an auxiliary device to aid searches or literary concordancing.&lt;br /&gt;
&lt;br /&gt;
Is there a point where we should let go and put the TEI aside in favour of specialized linguistic formats? Are there specialized linguistic formats that render the TEI useless? Or can their special features be recast in our familiar vocabulary?&lt;br /&gt;
&lt;br /&gt;
Much depends on the data to be described, and within recent years, we have seen the TEI extended to successfully describe the transcription of spoken language (now a new ISO/TEI published standard) or to handle computer-mediated communication (cf. the progress done in the CMC SIG). At the upcoming meeting, we are going to look at yet another set of linguistic experimental data and confront the question of how naturally it can be handled by the current TEI devices. Apart from that, several recent advances, both accomplished and planned, will be reviewed. As always, we welcome not only linguists but anyone who brushes against language-related issues in their TEI work (which is to say: everyone is welcome, do come over to learn and share!)&lt;br /&gt;
&lt;br /&gt;
==== Agenda ====&lt;br /&gt;
The meeting is going to begin with a presentation by Sophie Repp (University of Cologne, Germany) entitled &amp;quot;Towards an annotation scheme for acceptability judgment data&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Other issues on our traditionally somewhat loose agenda include a sneak peek at the presentation given later on the same day, a potential future ISO/TEI initiative on standardizing lightweight annotation, a ghost of an ancient war haunting att.lexicographic (think `@norm` and `@orig` attributes as the point where we may be politely asked to abandon the TEI wagon), and whatever the group will wish to talk about.&lt;br /&gt;
&lt;br /&gt;
==== Links ====&lt;br /&gt;
These are here basically to avoid the typical &amp;quot;technological breaks&amp;quot; that like to occur when switching laptops.&amp;lt;br/&amp;gt;&lt;br /&gt;
Everyone can edit this space if they wish to share something with others (yes, you need a wiki account or you can send an e-mail to {banski,witt} attt ids-mannheim.de to get your links posted here).&lt;br /&gt;
&lt;br /&gt;
(Don't expect any structure here. Please add links to the bottom so that we can reference them by number.)&lt;br /&gt;
&lt;br /&gt;
#. http://universaldependencies.org/introduction.html&lt;br /&gt;
#. http://deutschestextarchiv.de/book/show/20000  (see &amp;quot;downloads&amp;quot; on the right; 4 MB!)&lt;br /&gt;
#. https://texts.earlyprint.org/works/A83158.xml (&amp;quot;downloads&amp;quot;)&lt;br /&gt;
#. https://github.com/TEIC/TEI/issues/1670&lt;br /&gt;
#. https://github.com/TEIC/TEI/issues/1776&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG_in_Tokyo,_Sep_2018&amp;diff=16390</id>
		<title>LingSIG in Tokyo, Sep 2018</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG_in_Tokyo,_Sep_2018&amp;diff=16390"/>
		<updated>2018-09-10T16:31:23Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The 9th meeting of the LingSIG, Tokyo, Sep 11th, 2018, 10:45, Room B 2,3 (See the overall [https://tei2018.dhii.asia/SIGs SIG meeting schedule].)&lt;br /&gt;
&lt;br /&gt;
Topic:  '''the limits of the TEI and how to push them''' &lt;br /&gt;
&lt;br /&gt;
==== Introduction ====&lt;br /&gt;
Some specialized fields/applications need specialized formats, take Math ML or vector graphics. But the substance of text-oriented studies is by its nature open to linguistic description, even if the results are only used as an auxiliary device to aid searches or literary concordancing.&lt;br /&gt;
&lt;br /&gt;
Is there a point where we should let go and put the TEI aside in favour of specialized linguistic formats? Are there specialized linguistic formats that render the TEI useless? Or can their special features be recast in our familiar vocabulary?&lt;br /&gt;
&lt;br /&gt;
Much depends on the data to be described, and within recent years, we have seen the TEI extended to successfully describe the transcription of spoken language (now a new ISO/TEI published standard) or to handle computer-mediated communication (cf. the progress done in the CMC SIG). At the upcoming meeting, we are going to look at yet another set of linguistic experimental data and confront the question of how naturally it can be handled by the current TEI devices. Apart from that, several recent advances, both accomplished and planned, will be reviewed. As always, we welcome not only linguists but anyone who brushes against language-related issues in their TEI work (which is to say: everyone is welcome, do come over to learn and share!)&lt;br /&gt;
&lt;br /&gt;
==== Agenda ====&lt;br /&gt;
The meeting is going to begin with a presentation by Sophie Rapp (University of Cologne, Germany) entitled &amp;quot;Towards an annotation scheme for acceptability judgment data&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Other issues on our traditionally somewhat loose agenda include a sneak peek at the presentation given later on the same day, a potential future ISO/TEI initiative on standardizing lightweight annotation, a ghost of an ancient war haunting att.lexicographic (think `@norm` and `@orig` attributes as the point where we may be politely asked to abandon the TEI wagon), and whatever the group will wish to talk about.&lt;br /&gt;
&lt;br /&gt;
==== Links ====&lt;br /&gt;
These are here basically to avoid the typical &amp;quot;technological breaks&amp;quot; that like to occur when switching laptops.&amp;lt;br/&amp;gt;&lt;br /&gt;
Everyone can edit this space if they wish to share something with others (yes, you need a wiki account or you can send an e-mail to {banski,witt} attt ids-mannheim.de to get your links posted here).&lt;br /&gt;
&lt;br /&gt;
(Don't expect any structure here. Please add links to the bottom so that we can reference them by number.)&lt;br /&gt;
&lt;br /&gt;
#. http://universaldependencies.org/introduction.html&lt;br /&gt;
#. http://deutschestextarchiv.de/book/show/20000  (see &amp;quot;downloads&amp;quot; on the right; 4 MB!)&lt;br /&gt;
#. https://texts.earlyprint.org/works/A83158.xml (&amp;quot;downloads&amp;quot;)&lt;br /&gt;
#. https://github.com/TEIC/TEI/issues/1670&lt;br /&gt;
#. https://github.com/TEIC/TEI/issues/1776&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG_in_Tokyo,_Sep_2018&amp;diff=16389</id>
		<title>LingSIG in Tokyo, Sep 2018</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG_in_Tokyo,_Sep_2018&amp;diff=16389"/>
		<updated>2018-09-10T16:17:51Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The 9th meeting of the LingSIG, Tokyo, Sep 11th, 2018, 10:45, Room B 2,3 (See the overall [https://tei2018.dhii.asia/SIGs SIG meeting schedule].)&lt;br /&gt;
&lt;br /&gt;
Topic:  '''the limits of the TEI and how to push them''' &lt;br /&gt;
&lt;br /&gt;
==== Introduction ====&lt;br /&gt;
&lt;br /&gt;
Some specialized fields/applications need specialized formats, take Math ML or vector graphics. But the substance of text-oriented studies is by its nature open to linguistic description, even if the results are only used as an auxiliary device to aid searches or literary concordancing.&lt;br /&gt;
&lt;br /&gt;
Is there a point where we should let go and put the TEI aside in favour of specialized linguistic formats? Are there specialized linguistic formats that render the TEI useless? Or can their special features be recast in our familiar vocabulary?&lt;br /&gt;
&lt;br /&gt;
Much depends on the data to be described, and within recent years, we have seen the TEI extended to successfully describe the transcription of spoken language (now a new ISO/TEI published standard) or to handle computer-mediated communication (cf. the progress done in the CMC SIG). At the upcoming meeting, we are going to look at yet another set of linguistic experimental data and confront the question of how naturally it can be handled by the current TEI devices. Apart from that, several recent advances, both accomplished and planned, will be reviewed. As always, we welcome not only linguists but anyone who brushes against language-related issues in their TEI work (which is to say: everyone is welcome, do come over to learn and share!)&lt;br /&gt;
&lt;br /&gt;
==== Agenda ====&lt;br /&gt;
&lt;br /&gt;
The meeting is going to begin with a presentation by Sophie Rapp (University of Cologne, Germany) entitled &amp;quot;Towards an annotation scheme for acceptability judgment data&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Other issues on our traditionally somewhat loose agenda include a sneak peek at the presentation given later on the same day, a potential future ISO/TEI initiative on standardizing lightweight annotation, a ghost of an ancient war haunting att.lexicographic (think `@norm` and `@orig` attributes as the point where we may be politely asked to abandon the TEI wagon), and whatever the group will wish to talk about.&lt;br /&gt;
&lt;br /&gt;
==== Links ====&lt;br /&gt;
These are here basically to avoid the typical &amp;quot;technological breaks&amp;quot; that like to occur when switching laptops.&amp;lt;br/&amp;gt;&lt;br /&gt;
Everyone can edit this space if they wish to share something with others (yes, you need a wiki account or you can send an e-mail to {banski,witt} attt ids-mannheim.de to get your links posted here).&lt;br /&gt;
&lt;br /&gt;
(Don't expect any structure here.)&lt;br /&gt;
&lt;br /&gt;
#. http://universaldependencies.org/introduction.html&lt;br /&gt;
#. http://deutschestextarchiv.de/book/show/20000  (see &amp;quot;downloads&amp;quot; on the right)&lt;br /&gt;
#. https://github.com/TEIC/TEI/issues/1670&lt;br /&gt;
#. https://github.com/TEIC/TEI/issues/1776&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG_in_Tokyo,_Sep_2018&amp;diff=16387</id>
		<title>LingSIG in Tokyo, Sep 2018</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG_in_Tokyo,_Sep_2018&amp;diff=16387"/>
		<updated>2018-09-10T07:17:09Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The 9th meeting of the LingSIG, Tokyo, Sep 11th, 2018, 10:45, Room B 2,3 (See the overall [https://tei2018.dhii.asia/SIGs SIG meeting schedule].)&lt;br /&gt;
&lt;br /&gt;
Tentative topic:  '''the limits of the TEI and how to push them''' &lt;br /&gt;
&lt;br /&gt;
Some specialized fields/applications need specialized formats, take Math ML or vector graphics. But the substance of text-oriented studies is by its nature open to linguistic description, even if the results are only used as an auxiliary device to aid searches or literary concordancing.&lt;br /&gt;
&lt;br /&gt;
Is there a point where we should let go and put the TEI aside in favour of specialized linguistic formats? Are there specialized linguistic formats that render the TEI useless? Or can their special features be recast in our familiar vocabulary?&lt;br /&gt;
&lt;br /&gt;
Much depends on the data to be described, and within recent years, we have seen the TEI extended to successfully describe the transcription of spoken language (now a new ISO/TEI published standard) or to handle computer-mediated communication (cf. the progress done in the CMC SIG). At the upcoming meeting, we are going to look at yet another set of linguistic experimental data and confront the question of how naturally it can be handled by the current TEI devices. Apart from that, several recent advances, both accomplished and planned, will be reviewed. As always, we welcome not only linguists but anyone who brushes against language-related issues in their TEI work (which is to say: everyone is welcome, do come over to learn and share!)&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG_in_Tokyo,_Sep_2018&amp;diff=16386</id>
		<title>LingSIG in Tokyo, Sep 2018</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG_in_Tokyo,_Sep_2018&amp;diff=16386"/>
		<updated>2018-09-10T03:58:00Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: Created page with &amp;quot;The 9th meeting of the LingSIG, Tokyo, Sep 11th, 2018, 10:45, Room B 2,3 (See the overall [https://tei2018.dhii.asia/SIGs SIG meeting schedule].)&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The 9th meeting of the LingSIG, Tokyo, Sep 11th, 2018, 10:45, Room B 2,3 (See the overall [https://tei2018.dhii.asia/SIGs SIG meeting schedule].)&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:TEI_for_Linguists&amp;diff=16385</id>
		<title>SIG:TEI for Linguists</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:TEI_for_Linguists&amp;diff=16385"/>
		<updated>2018-09-10T03:53:12Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: /* Meetings */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Community]]&lt;br /&gt;
[[Category:SIG|Linguistics]]&lt;br /&gt;
[[Category:SIG:Linguistics| ]]&lt;br /&gt;
&lt;br /&gt;
== Aims ==&lt;br /&gt;
&lt;br /&gt;
This Special Interest Group is meant for those interested in linguistics, in the TEI, and in putting the two together.&lt;br /&gt;
&lt;br /&gt;
== Contact details, information ==&lt;br /&gt;
&lt;br /&gt;
* [http://listserv.brown.edu/archives/cgi-bin/wa?A0=TEI-LINGUISTICS Mailing list subscription page] (acts as an unofficial list of members)&lt;br /&gt;
* [https://github.com/LingSIG LingSIG at GitHub]&lt;br /&gt;
* [http://www.tei-c.org/Activities/SIG/TEI_for_Linguists/ Official TEI SIG page]&lt;br /&gt;
* [https://sourceforge.net/projects/lingsig/files/Documents/ LingSIG and related presentations], hosted at SourceForge&lt;br /&gt;
* [http://jenkins-paderborn.tei-c.org/view/LingSIG/ Mr. Jenkins makes sure that our code is nice]&lt;br /&gt;
&lt;br /&gt;
== Activities ==&lt;br /&gt;
The SIG activities (will) include official meetings at TEI-MMs, conference reports and e-mail exchange on the mailing list. As part of its activity, the SIG will attempt to [[SIG:Linguistics - bibliography|track and record]] papers that deal with using various markup standards for the purpose of encoding linguistic analyses and language resources.&lt;br /&gt;
&lt;br /&gt;
=== Tickets/Issues ===&lt;br /&gt;
The &amp;quot;LingSIG&amp;quot; label may be used in the GitHub ticketing system to informally indicate items that either have been posted as a result of LingSIG-related work or that could possibly benefit from extra attention on the group's part. Nothing more beyond that is implied; in particular, the label is not meant to exclude any other SIGs or individuals from the discussion.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/TEIC/TEI/issues?utf8=%E2%9C%93&amp;amp;q=label%3ASIG%3ALingSIG+ relevant GitHub issues]&lt;br /&gt;
* [https://sourceforge.net/p/tei/bugs/search?q=labels:LingSIG Bugs in the LingSIG's scope of interest (at SourceForge, of historical value only)]&lt;br /&gt;
* [https://sourceforge.net/p/tei/feature-requests/search?q=labels:LingSIG Feature Requests in the LingSIG's scope of interest (at SourceForge, of historical value only)]&lt;br /&gt;
&lt;br /&gt;
=== Meetings ===&lt;br /&gt;
* The first official meeting took place in Zadar, on 13 November 2010; see the [[Zadar, 13 November 2010, Agenda|agenda]] and the [[TEI for Linguists - minutes - 13nov10|minutes]]. The meeting was preceded by the LLiZ (Linguistic Lunch in Zadar) and a poster presentation.&lt;br /&gt;
* The second meeting took place in [[LingSIG in Würzburg, Oct 2011|Würzburg, on 14 October 2011]]. The meeting presented the [https://www.zotero.org/groups/tei-lingsig/items LingSIG bibliography maintained as a Zotero library], for everyone to use and add to (please?). Its recurring theme was &amp;quot;keep the SIG aware about the stuff you're doing&amp;quot;. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Piotr%2BAndreas.pdf/download slides])&lt;br /&gt;
* The third meeting took place in College Station, TX. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202012/LingSIG_TEI-MM-2012.pdf/download slides])&lt;br /&gt;
* The fourth meeting took place on Oct 3 2013 in Rome. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202013/LingSIG-2013.pdf/download slides]). It was preceded by a workshop on the &amp;quot;[http://corpora.ids-mannheim.de/queryTEI.html Perspectives on querying TEI-annotated data]&amp;quot;, co-organised by the conveners of the SIG.&lt;br /&gt;
* Due to an interplay of mostly unforeseen factors, the fifth meeting in Chicago was the least fruitful of all. Let's make sure that it will remain an edge case.&lt;br /&gt;
* The sixth meeting took place in [http://tei2015.huma-num.fr/en/ Lyon], on Thursday, October 29th. It featured [[LingSIG in Lyon, Oct 2015|four presentations and discussion]].&lt;br /&gt;
* The [[LingSIG_in_Vienna,_Sep_2016|seventh meeting]] took place in Vienna, during [http://tei2016.acdh.oeaw.ac.at/ TEI-MM-2016], and featured a half-day workshop devoted to lexical and terminological representations.&lt;br /&gt;
* The [[LingSIG_in_Victoria,_Nov_2017|8th meeting]] was held in [http://hcmc.uvic.ca/tei2017/index.php Victoria, BC].&lt;br /&gt;
* The [[LingSIG_in_Tokyo,_Sep_2018|9th meeting]] is going to be held during the [https://tei2018.dhii.asia/ Tokyo conference]. Topic: the limits of the TEI and how to push them.&lt;br /&gt;
&lt;br /&gt;
== Bibliography ==&lt;br /&gt;
The SIG has put together an initial bibliography of works relevant to linguistics and markup (TEI in particular but not only -- the world is full of sources of inspiration). The [[SIG:Linguistics - bibliography |bibliography]] is maintained as a Zotero resource. No one in particular is responsible for maintaining the resource, so everyone is... please feel welcome to help expand it.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
TEI projects with a linguistic focus&amp;lt;br /&amp;gt; &lt;br /&gt;
(''this is an open list'', please feel welcome to edit or make suggestions for inclusion!)&lt;br /&gt;
&lt;br /&gt;
* [[FreeDict]] &lt;br /&gt;
* [[TXM]]&lt;br /&gt;
* [https://sourceforge.net/projects/octc/ Open Content Text Corpus] (it needs you)&lt;br /&gt;
* [[FSD Validator]] (you need it)&lt;br /&gt;
* [https://github.com/LingSIG GitHub repositories of the LingSIG]&lt;br /&gt;
&lt;br /&gt;
== The most relevant chapters of the Guidelines ==&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/TS.html 8. Transcriptions of Speech]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/DI.html 9. Dictionaries]: we need to have a plan so that the NLP community does consider this as a default vocabulary for representing NLP lexica (e.g. full form lexica)&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CC.html 15. Language Corpora]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/AI.html 17. Simple Analytic Mechanisms]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/FS.html 18. Feature Structures]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/NH.html 20. Non-hierarchical Structures]&lt;br /&gt;
* [http://www.tei-c.org/Vault/GL/P3/TE.htm Terminology chapter, now gone; a half-spoken promise of its return lingers in the air]&lt;br /&gt;
&lt;br /&gt;
== Related SIGs ==&lt;br /&gt;
* [[SIG:Ontologies|Ontologies]]&lt;br /&gt;
* [[SIG:Computer-Mediated_Communication|Computer-Mediated Communication]]&lt;br /&gt;
* [[SIG:Tools|Tools]]&lt;br /&gt;
* [[SIG:Overlap|Overlap]] (inactive)&lt;br /&gt;
&lt;br /&gt;
== Tools - reports of non-TEI linguistic tools working / not working with TEI ==&lt;br /&gt;
* [http://gate.ac.uk/ GATE] doesn't do XML see [http://thread.gmane.org/gmane.comp.ai.gate.general/5257/focus=5301 XML parsing issue: consecutive empty elements mishandled] (report from 2009 -- that may have changed; any news?)&lt;br /&gt;
* See also the TEI-influenced or TEI-based tools: [[Xaira]], [[TXM]], [[wikipedia:Poliqarp|Poliqarp]], [[Philologic]] and [http://zil.ipipan.waw.pl/Anotatornia/ Anotatornia]&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
* Here's [https://listserv.brown.edu/archives/cgi-bin/wa?A2=TEI-L;28ba674e.1007 how it began]&lt;br /&gt;
* TEI Guidelines have their apocrypha as well, here's one on [http://www.tei-c.org/Activities/Workgroups/SO/sow05.xml corpus annotation]. Note that it is absolutely non-normative, included here to give credit to the original Working Group and to provide a platform to either elaborate on or to diverge from.&lt;br /&gt;
&lt;br /&gt;
The first official meeting of the SIG took place on 13 November 2010 at the [http://www.tei-c.org/Membership/Meetings/2010/ TEI-MM in Zadar]. This meeting was preceded by a reconnaissance lunch (we liked both the intel and the food) and a Poster Slam presentation (boyakasha...).&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=LingSIG_in_Victoria,_Nov_2017&amp;diff=16384</id>
		<title>LingSIG in Victoria, Nov 2017</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=LingSIG_in_Victoria,_Nov_2017&amp;diff=16384"/>
		<updated>2018-09-10T03:51:10Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The 8th LingSIG meeting. Victoria, BC., (Tuesday, 14 Nov, 13:45 UTC-8 = 22:45 CET)&lt;br /&gt;
&lt;br /&gt;
==== Agenda ====&lt;br /&gt;
Convenors: Piotr Bański and Andreas Witt (possibly remotely)&lt;br /&gt;
&lt;br /&gt;
* Welcome + Round of introductions&lt;br /&gt;
* Last year’s goal: lexical/concept description&lt;br /&gt;
** Stefan Pernes: a closer look at [http://hcmc.uvic.ca/tei2017/abstracts/t_109_bowersetal_conceptentry.html TBX-in-TEI]&lt;br /&gt;
** Piotr Bański: a brief look at [https://github.com/LingSIG/Dictionaries (a fragment of) TEI-Lex0] (see also a paper by Bański, Bowers and Erjavec, [https://elex.link/elex2017/wp-content/uploads/2017/09/paper29.pdf &amp;quot;TEI-Lex0 Guidelines for the Encoding of Dictionary Information on Written and Spoken Forms&amp;quot;])&lt;br /&gt;
* Overview of [https://github.com/LingSIG LingSIG@GitHub]&lt;br /&gt;
* Discussion: goals for the coming year, new ideas?&lt;br /&gt;
&lt;br /&gt;
==== Report ====&lt;br /&gt;
The LingSIG met to sum up the past year (spent with a focus on lexical/content description). Stefan Pernes and Piotr Bański presented reports on the progress on, respectively, the concept-oriented side (in the context of ISO TC37 SC3 = TBX serialization in the TEI and the return of the terminology chapter), and on the form-oriented side (in the context of ISO TC37 SC4 -- revision of the LMF and its serialization in the TEI; the ENeL/Parthenos/Dariah initiative on creating baseline encoding for retrodigitized dictionaries called TEI Lex0).&lt;br /&gt;
&lt;br /&gt;
Afterwards, Piotr has presented the ecology of the LingSIG space on GitHub and the mechanics open now for the members to aid in the development of the Guidelines and of the TEI outreach towards the language-resource circles.&lt;br /&gt;
&lt;br /&gt;
We talked about plans for the coming year (the SIG will continue and is hoping for support from the Council; this also extends to the possible space on Jenkins servers, especially if the current maintainers, Martin and Peter, will not be able to accommodate the LingSIG input). We also fully supported Peter Stadler's idea of having designated Council liaisons for SIGs.&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=SIG:TEI_for_Linguists&amp;diff=16383</id>
		<title>SIG:TEI for Linguists</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=SIG:TEI_for_Linguists&amp;diff=16383"/>
		<updated>2018-09-10T03:16:20Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: /* Meetings */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Community]]&lt;br /&gt;
[[Category:SIG|Linguistics]]&lt;br /&gt;
[[Category:SIG:Linguistics| ]]&lt;br /&gt;
&lt;br /&gt;
== Aims ==&lt;br /&gt;
&lt;br /&gt;
This Special Interest Group is meant for those interested in linguistics, in the TEI, and in putting the two together.&lt;br /&gt;
&lt;br /&gt;
== Contact details, information ==&lt;br /&gt;
&lt;br /&gt;
* [http://listserv.brown.edu/archives/cgi-bin/wa?A0=TEI-LINGUISTICS Mailing list subscription page] (acts as an unofficial list of members)&lt;br /&gt;
* [https://github.com/LingSIG LingSIG at GitHub]&lt;br /&gt;
* [http://www.tei-c.org/Activities/SIG/TEI_for_Linguists/ Official TEI SIG page]&lt;br /&gt;
* [https://sourceforge.net/projects/lingsig/files/Documents/ LingSIG and related presentations], hosted at SourceForge&lt;br /&gt;
* [http://jenkins-paderborn.tei-c.org/view/LingSIG/ Mr. Jenkins makes sure that our code is nice]&lt;br /&gt;
&lt;br /&gt;
== Activities ==&lt;br /&gt;
The SIG activities (will) include official meetings at TEI-MMs, conference reports and e-mail exchange on the mailing list. As part of its activity, the SIG will attempt to [[SIG:Linguistics - bibliography|track and record]] papers that deal with using various markup standards for the purpose of encoding linguistic analyses and language resources.&lt;br /&gt;
&lt;br /&gt;
=== Tickets/Issues ===&lt;br /&gt;
The &amp;quot;LingSIG&amp;quot; label may be used in the GitHub ticketing system to informally indicate items that either have been posted as a result of LingSIG-related work or that could possibly benefit from extra attention on the group's part. Nothing more beyond that is implied; in particular, the label is not meant to exclude any other SIGs or individuals from the discussion.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/TEIC/TEI/issues?utf8=%E2%9C%93&amp;amp;q=label%3ASIG%3ALingSIG+ relevant GitHub issues]&lt;br /&gt;
* [https://sourceforge.net/p/tei/bugs/search?q=labels:LingSIG Bugs in the LingSIG's scope of interest (at SourceForge, of historical value only)]&lt;br /&gt;
* [https://sourceforge.net/p/tei/feature-requests/search?q=labels:LingSIG Feature Requests in the LingSIG's scope of interest (at SourceForge, of historical value only)]&lt;br /&gt;
&lt;br /&gt;
=== Meetings ===&lt;br /&gt;
* The first official meeting took place in Zadar, on 13 November 2010; see the [[Zadar, 13 November 2010, Agenda|agenda]] and the [[TEI for Linguists - minutes - 13nov10|minutes]]. The meeting was preceded by the LLiZ (Linguistic Lunch in Zadar) and a poster presentation.&lt;br /&gt;
* The second meeting took place in [[LingSIG in Würzburg, Oct 2011|Würzburg, on 14 October 2011]]. The meeting presented the [https://www.zotero.org/groups/tei-lingsig/items LingSIG bibliography maintained as a Zotero library], for everyone to use and add to (please?). Its recurring theme was &amp;quot;keep the SIG aware about the stuff you're doing&amp;quot;. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202011/LingSIG_14oct11_Piotr%2BAndreas.pdf/download slides])&lt;br /&gt;
* The third meeting took place in College Station, TX. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202012/LingSIG_TEI-MM-2012.pdf/download slides])&lt;br /&gt;
* The fourth meeting took place on Oct 3 2013 in Rome. ([http://sourceforge.net/projects/lingsig/files/Documents/SIG%20meeting%202013/LingSIG-2013.pdf/download slides]). It was preceded by a workshop on the &amp;quot;[http://corpora.ids-mannheim.de/queryTEI.html Perspectives on querying TEI-annotated data]&amp;quot;, co-organised by the conveners of the SIG.&lt;br /&gt;
* Due to an interplay of mostly unforeseen factors, the fifth meeting in Chicago was the least fruitful of all. Let's make sure that it will remain an edge case.&lt;br /&gt;
* The sixth meeting took place in [http://tei2015.huma-num.fr/en/ Lyon], on Thursday, October 29th. It featured [[LingSIG in Lyon, Oct 2015|four presentations and discussion]].&lt;br /&gt;
* The [[LingSIG_in_Vienna,_Sep_2016|seventh meeting]] took place in Vienna, during [http://tei2016.acdh.oeaw.ac.at/ TEI-MM-2016], and featured a half-day workshop devoted to lexical and terminological representations.&lt;br /&gt;
* The [[LingSIG_in_Victoria,_Nov_2017|8th meeting]] was held in [http://hcmc.uvic.ca/tei2017/index.php Victoria, BC].&lt;br /&gt;
* The next meeting is going to be held during the [https://tei2018.dhii.asia/ Tokyo conference]. Topic: the limits of TEI and how to push them.&lt;br /&gt;
&lt;br /&gt;
== Bibliography ==&lt;br /&gt;
The SIG has put together an initial bibliography of works relevant to linguistics and markup (TEI in particular but not only -- the world is full of sources of inspiration). The [[SIG:Linguistics - bibliography |bibliography]] is maintained as a Zotero resource. No one in particular is responsible for maintaining the resource, so everyone is... please feel welcome to help expand it.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
TEI projects with a linguistic focus&amp;lt;br /&amp;gt; &lt;br /&gt;
(''this is an open list'', please feel welcome to edit or make suggestions for inclusion!)&lt;br /&gt;
&lt;br /&gt;
* [[FreeDict]] &lt;br /&gt;
* [[TXM]]&lt;br /&gt;
* [https://sourceforge.net/projects/octc/ Open Content Text Corpus] (it needs you)&lt;br /&gt;
* [[FSD Validator]] (you need it)&lt;br /&gt;
* [https://github.com/LingSIG GitHub repositories of the LingSIG]&lt;br /&gt;
&lt;br /&gt;
== The most relevant chapters of the Guidelines ==&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/TS.html 8. Transcriptions of Speech]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/DI.html 9. Dictionaries]: we need to have a plan so that the NLP community does consider this as a default vocabulary for representing NLP lexica (e.g. full form lexica)&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CC.html 15. Language Corpora]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/AI.html 17. Simple Analytic Mechanisms]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/FS.html 18. Feature Structures]&lt;br /&gt;
* [http://www.tei-c.org/release/doc/tei-p5-doc/en/html/NH.html 20. Non-hierarchical Structures]&lt;br /&gt;
* [http://www.tei-c.org/Vault/GL/P3/TE.htm Terminology chapter, now gone; a half-spoken promise of its return lingers in the air]&lt;br /&gt;
&lt;br /&gt;
== Related SIGs ==&lt;br /&gt;
* [[SIG:Ontologies|Ontologies]]&lt;br /&gt;
* [[SIG:Computer-Mediated_Communication|Computer-Mediated Communication]]&lt;br /&gt;
* [[SIG:Tools|Tools]]&lt;br /&gt;
* [[SIG:Overlap|Overlap]] (inactive)&lt;br /&gt;
&lt;br /&gt;
== Tools - reports of non-TEI linguistic tools working / not working with TEI ==&lt;br /&gt;
* [http://gate.ac.uk/ GATE] doesn't do XML see [http://thread.gmane.org/gmane.comp.ai.gate.general/5257/focus=5301 XML parsing issue: consecutive empty elements mishandled] (report from 2009 -- that may have changed; any news?)&lt;br /&gt;
* See also the TEI-influenced or TEI-based tools: [[Xaira]], [[TXM]], [[wikipedia:Poliqarp|Poliqarp]], [[Philologic]] and [http://zil.ipipan.waw.pl/Anotatornia/ Anotatornia]&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
* Here's [https://listserv.brown.edu/archives/cgi-bin/wa?A2=TEI-L;28ba674e.1007 how it began]&lt;br /&gt;
* TEI Guidelines have their apocrypha as well, here's one on [http://www.tei-c.org/Activities/Workgroups/SO/sow05.xml corpus annotation]. Note that it is absolutely non-normative, included here to give credit to the original Working Group and to provide a platform to either elaborate on or to diverge from.&lt;br /&gt;
&lt;br /&gt;
The first official meeting of the SIG took place on 13 November 2010 at the [http://www.tei-c.org/Membership/Meetings/2010/ TEI-MM in Zadar]. This meeting was preceded by a reconnaissance lunch (we liked both the intel and the food) and a Poster Slam presentation (boyakasha...).&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=User_talk:Ken_M._Penner&amp;diff=16221</id>
		<title>User talk:Ken M. Penner</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=User_talk:Ken_M._Penner&amp;diff=16221"/>
		<updated>2018-05-15T21:29:58Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to ''TEIWiki''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [[Help:Contents|help pages]].&lt;br /&gt;
Again, welcome and have fun! [[User:Piotr Banski|Piotr]] 23:29, 15 May 2018 (CEST)&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=User:Ken_M._Penner&amp;diff=16220</id>
		<title>User:Ken M. Penner</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=User:Ken_M._Penner&amp;diff=16220"/>
		<updated>2018-05-15T21:29:56Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: Creating user page with biography of new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Associate professor of Religious Studies at St. Francis Xavier University, Antigonish, Nova Scotia, Canada&lt;br /&gt;
&lt;br /&gt;
[[Category:Users]]&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=User_talk:Dominique_Mee%C3%B9s&amp;diff=16200</id>
		<title>User talk:Dominique Meeùs</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=User_talk:Dominique_Mee%C3%B9s&amp;diff=16200"/>
		<updated>2018-04-19T09:18:29Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to ''TEIWiki''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [[Help:Contents|help pages]].&lt;br /&gt;
Again, welcome and have fun! [[User:Piotr Banski|Piotr]] 11:18, 19 April 2018 (CEST)&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=User:Dominique_Mee%C3%B9s&amp;diff=16199</id>
		<title>User:Dominique Meeùs</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=User:Dominique_Mee%C3%B9s&amp;diff=16199"/>
		<updated>2018-04-19T09:18:28Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: Creating user page with biography of new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Not exactly a digital humanist, more an amateur, but happy user of the TEI.&lt;br /&gt;
I am inscribed to the TEI-list.&lt;br /&gt;
&lt;br /&gt;
[[Category:Users]]&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=User_talk:Matthias_Arnold&amp;diff=16161</id>
		<title>User talk:Matthias Arnold</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=User_talk:Matthias_Arnold&amp;diff=16161"/>
		<updated>2018-04-04T08:25:16Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to ''TEIWiki''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [[Help:Contents|help pages]].&lt;br /&gt;
Again, welcome and have fun! [[User:Piotr Banski|Piotr]] 10:25, 4 April 2018 (CEST)&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=User:Matthias_Arnold&amp;diff=16160</id>
		<title>User:Matthias Arnold</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=User:Matthias_Arnold&amp;diff=16160"/>
		<updated>2018-04-04T08:25:10Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: Creating user page with biography of new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I’ve been working at the Heidelberg Research Architecture (HRA), Cluster of Excellence “Asia and Europe”, Heidelberg University since 2008. Earlier I coordinated the European Center for Digital Resources in Chinese Studies and co-headed the IT department at the Heidelberg Center for East Asian Studies. I also participated in the research project “Buddhist Stone Scriptures in China” at the Heidelberg Academy of Sciences and Humanities. &lt;br /&gt;
Among the projects I supervised are the “Chinese Women’s Magazines of the Late Qing and Early Republican Era” [http://womag.uni-hd.de] and the “Chinese Entertainment Newspapers” [http://xiaobao.uni-hd.de], both of which are now part of the follow-up project “Early Chinese Periodicals Online (ECPO)” [http://ecpo.uni-hd.de].&lt;br /&gt;
I’m interested in TEI for Republican era Chinese newspapers and magazines and am also looking for partners to (semi-)automatically processing image scans of these materials and producing full text. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Users]]&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=User_talk:Georg_Vogeler&amp;diff=16097</id>
		<title>User talk:Georg Vogeler</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=User_talk:Georg_Vogeler&amp;diff=16097"/>
		<updated>2018-01-11T15:14:13Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to ''TEIWiki''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [[Help:Contents|help pages]].&lt;br /&gt;
Again, welcome and have fun! [[User:Piotr Banski|Piotr]] 16:14, 11 January 2018 (CET)&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.tei-c.org/index.php?title=User:Georg_Vogeler&amp;diff=16096</id>
		<title>User:Georg Vogeler</title>
		<link rel="alternate" type="text/html" href="https://wiki.tei-c.org/index.php?title=User:Georg_Vogeler&amp;diff=16096"/>
		<updated>2018-01-11T15:14:12Z</updated>

		<summary type="html">&lt;p&gt;Piotr Banski: Creating user page with biography of new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Trained medievalist, became digital humanist by chance and intrigued by XML encoding while doing diplomatics and digital scholarly editions.&lt;br /&gt;
Professor for Digital Humanities at the Centre for Information Modelling at the University of Graz&lt;br /&gt;
Board Member 2018-2019&lt;br /&gt;
&lt;br /&gt;
[[Category:Users]]&lt;/div&gt;</summary>
		<author><name>Piotr Banski</name></author>
		
	</entry>
</feed>