Introduction to XML-TEI

Total Page:16

File Type:pdf, Size:1020Kb

Introduction to XML-TEI Introduction to XML-TEI 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 1 What is XML? =eXtensible Markup Language make explicit what is implicit to be processed by machines store and transport data of any types platform independent focus on what the data is not how to display it extensible can be expanded, not pre-defined tags hierarchical tree structure nested elements XML documents must be well-formed and validated against a predefined schema XML vocabularies determine the semantics of the elements https://en.wikipedia.org/wiki/List_of_XML_markup_languages 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 2 What is TEI? = Text Encoding Initiative • an XML vocabulary (encoding schema) • an organization & community of users: http://www.tei- c.org/index.xml • The TEI Guidelines: most recent version Proposal 5 or P5 was released in 2007 • Text encoding is a modeling activity: a process of creating an analytical representation of a document or an information system • Analytical process / embedded scholarly interpretation • Modeling and processing textual data 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 3 What types of “processing”? Website document Map 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 4 XML-TEI in the humanities: digital editions and archives • Dictionaries: Digital Dictionary of the German language • Classical texts: Perseus • Works of major authors: Shelley-Godwin, Blake, Dante , Newton, Nietzsche • Thematic archives: Early Women Writers Project, Mapping the Republic of Letters • Letter collections: Van Gogh’s Letters, Letters of 1916 • List of projects using TEI: http://www.tei- c.org/Activities/Projects/ 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 5 Stages of a text encoding project • document analysis: determine the hierarchical structure of the documents that you wish to model in XML. • design a schema: a formal grammar describing where the various elements and attributes you want to use can and cannot be employed. • mark up your document according to the schema and validate it. • refining the document analysis and its schema during the markup phase. • processing different selections of the same data: transform, publish and analyze the results 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 6 Document analysis and XML markup • XML is used to model some of the structural and semantic properties of the cultural documents used in humanities research according to a hierarchical tree structure - chapter paragraph footnotes - canto stanza line - act scene speech • Analyze document structure based on research questions bibliographic reference vs. author, title, publisher, publication date, etc. i.e. foreign language vs. which particular languages • Markup – descriptive (title, foreign word, emphasis) multipurposive – presentational (italics) – procedural (change font to italics) – separation of meaning and presentation • The computer extracts lists of marked up elements for processing 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 7 THE TEI GRAMMAR STRUCTURE 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 8 ordered hierarchy of content objects (OHCO) • 1980s-1990s • Text as nesting objects Problem of overlapping hierarchies ! <l>text text</l> <l>text text <metaphor> text text</l> <l>text text</metaphor></l> Zibaldone: <p><quote>text text</p> text text</quote> <p><quote>text text</quote></p> 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 9 Basic TEI Guidelines • Schema • Header • Elements • Attributes Well-formed Valid 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 10 Zibaldone Schema 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 11 Zibaldone Header • <teiHeader> <fileDesc> <titleStmt> <title>An Encoding of <bibl>Zibaldone di pensieri</bibl> by Giacomo Leopardi</title> <principal> <persName xml:id="Silvia">Silvia Stoyanova</persName> </principal> <respStmt> <persName xml:id="Ben">Ben Johnston</persName> <resp>conversion</resp> </respStmt> </titleStmt> <publicationStmt> <p>In preparation</p> </publicationStmt> <sourceDesc> <p>Project Manuzio at www.liberliber.it</p> </sourceDesc> </fileDesc> </teiHeader> 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 12 Elements Elements are delimited by tags and enclose content or can be empty: <element>content</element> <pb xml:id="p102" n="102"/> = page break The content can be: - a string of text <persName>Casa</persName> - other elements <ref type="bibl"><persName type=“author">Casa,</persName> <title>Galat.</title></ref> - text + elements <ref type="bibl"><persName type=“author">Casa,</persName><title>Galat.</title>, cap. 26. princip.</ref> 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 13 Attributes Attributes qualify elements. Attributes have a name and a value Attribute values are enclosed in quotation marks. <ref type="bibl"><persName type=“author">Casa</persName>, <title>Galat.</title>, cap. 26. princip.</ref> <note place="inline" type="ink" subtype="dissimilar">(Luglio o Agosto 1817.)</note> Identifier attributes for referring from one textual element to another <pb xml:id="p1473" n="1473"/> = page break id <p xml:id="p1473_1" n="1473,1"> = paragraph id <note place="margin" xml:id="note35.1"> element attribute attribute value 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 14 Well-formed and valid XML document Well-formedness • XML tree has one root containing all other elements • All XML elements must have a closing tag • XML tags are case sensitive • All XML elements must be properly nested with no overlapping tags • Attribute values must always be quoted. • With XML, white space is preserved. Valid XML: • certain elements in certain contexts (corresponding to the schema) 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 15 Intro to the Oxygen XML editor • a cross-platform application designed for document development using structured mark-up languages such as XML • supports output to multiple target formats, including: PDF, TXT, HTML and XML • import data from a database, Excel, HTML or text file • checks for well-formedness and validates • easy error tracking - locate the error source by clicking on it • XPath search and evaluation support • content completion (attribute suggestions) 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 16 Transformations after the encoding CSS • Cascading Style Sheets are a strategy for describing how XML (and HTML) should be rendered. • Descriptive markup describes what the elements in a document mean, but not how they look. CSS is intended to let the designer specify the rendering separately from the XML. XML <ref target="p37_1" type="other">p.37,1</ref> CSS “other” = [] 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 17 XSLT • eXtensible Style Sheet Language Transformations: a programming language used to transform XML to other forms (other XML, HTML, plain text, etc.). • XSLT can be used to style an XML document, but it can also be used to create entirely new documents by transforming existing ones in almost unlimited ways. XSLT stylesheets can define complex transformations including sorting, grouping, filtering, aggregation, and selection. 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 18 Queries • XQuery: a language used to query XML databases. • XPath: a formal method of navigating the XML hierarchy, used by XSLT and XQuery. – a list of all person names, you use XPath to find all the person names in your document and XSLT to generate an output document that contains the newly constructed list of contents. 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 20 SVG Scalable Vector Graphics. An XML vocabulary (schema) for describing graphics. For example, one could use XSLT to transform a Shakespearean play into a bar graph illustrating how much each character speaks. 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 21 References • David J. Birnbaum, “What is XML and why should humanists care? An even gentler introduction to XML” http://dh.obdurodon.org/what-is- xml.xhtml • Gentle introduction to TEI http://xml.coverpages.org/TEI- GentleIntroXML.pdf • http://www.w3schools.com/xml/default.asp • TEI By Example - http://www.teibyexample.org/ 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 22 identify elements, element contents, attributes and attribute values 10/26/2016 Silvia Stoyanova, Introduction to XML-TEI. 23 .
Recommended publications
  • Transformation Frameworks and Their Relevance in Universal Design
    Universal Access in the Information Society manuscript No. (will be inserted by the editor) Transformation frameworks and their relevance in universal design Silas S. Brown and Peter Robinson University of Cambridge Computer Laboratory 15 JJ Thomson Avenue, Cambridge CB3 0FD, UK e-mail: fSilas.Brown,[email protected] Received: date / Revised version: date Category: Long Paper – Some algorithms can be simplified if the data is first transformed into a convenient structure. Many algo- Key words notations, transformation, conversion, ed- rithms can be regarded as transformations in their ucation, tools, 4DML own right. Abstract Music, engineering, mathematics, and many – Transformation can be important when presenting other disciplines have established notations for writing data to the user and when accepting user input. their documents. Adjusting these notations can con- This last point, namely the importance of transfor- tribute to universal access by helping to address access mation in user interaction, is relevant to universal design difficulties such as disabilities, cultural backgrounds, or and will be elaborated here. restrictive hardware. Tools that support the program- ming of such transformations can also assist by allowing the creation of new notations on demand, which is an 1.1 Transformation in universal design under-explored option in the relief of educational diffi- culties. Universal design aims to develop “technologies which This paper reviews some programming tools that can are accessible and usable by all citizens. thus avoid- be used to effect such transformations. It also introduces ing the need for a posteriori adaptations or specialised a tool, called “4DML”, that allows the programmer to design” [37].
    [Show full text]
  • The Text Encoding Initiative Nancy Ide
    Encoding standards for large text resources: The Text Encoding Initiative Nancy Ide LaboratoirE Parole et Langage Department of Computer Science CNRS/Universitd de Provence Vassar College 29, Avenue R.obert Schuman Poughkeepsie, New York 12601 (U.S.A.) 13621 Aix-en-Provence Cedex 1 (France) e-maih ide@cs, vassar, edu Abstract. The Text Encoding Initiative (TEl) is an considerable work to develop adequately large and international project established in 1988 to develop appropriately constituted textual resources still remains. guidelines for the preparation and interchange of The demand for extensive reusability of large text electronic texts for research, and to satisfy a broad range collections in turn requires the development of of uses by the language industries more generally. The standardized encoding formats for this data. It is no longer need for standardized encoding practices has become realistic to distribute data in ad hoc formats, since the inxreasingly critical as the need to use and, most eflbrt and resources required to clean tip and reformat the importantly, reuse vast amounts of electronic text has data for local use is at best costly, and in many cases dramatically increased for both research and industry, in prohibitive. Because much existing and potentially particular for natural language processing. In January available data was originally formatted R)r the purposes 1994, the TEl isstled its Guidelines for the Fmcoding and of printing, the information explicitly represented in the hiterehange of Machine-Readable Texts, which provide encoding concerns a imrticular physical realization of a standardized encoding conventions for a large range of text rather than its logical strttcture (which is of greater text types and features relevant for a broad range of interest for most NLP applications), and the applications.
    [Show full text]
  • SGML As a Framework for Digital Preservation and Access. INSTITUTION Commission on Preservation and Access, Washington, DC
    DOCUMENT RESUME ED 417 748 IR 056 976 AUTHOR Coleman, James; Willis, Don TITLE SGML as a Framework for Digital Preservation and Access. INSTITUTION Commission on Preservation and Access, Washington, DC. ISBN ISBN-1-887334-54-8 PUB DATE 1997-07-00 NOTE 55p. AVAILABLE FROM Commission on Preservation and Access, A Program of the Council on Library and Information Resources, 1400 16th Street, NW, Suite 740, Washington, DC 20036-2217 ($20). PUB TYPE Reports Evaluative (142) EDRS PRICE MF01/PC03 Plus Postage. DESCRIPTORS *Access to Information; Computer Oriented Programs; *Electronic Libraries; *Information Retrieval; Library Automation; Online Catalogs; *Preservation; Standards IDENTIFIERS Digital Technology; *SGML ABSTRACT This report explores the suitability of Standard Generalized Markup Language (SGML) as a framework for building, managing, and providing access to digital libraries, with special emphasis on preservation and access issues. SGML is an international standard (ISO 8879) designed to promote text interchange. It is used to define markup languages, which can then encode the logical structure and content of any so-defined document. The connection between SGML and the traditional concerns of preservation and access may not be immediately apparent, but the use of descriptive markup tools such as SGML is crucial to the quality and long-term accessibility of digitized materials. Beginning with a general exploration of digital formats for preservation and access, the report provides a staged technical tutorial on the features and uses of SGML. The tutorial covers SGML and related standards, SGML Document Type Definitions in current use, and related projects now under development. A tiered metadata model is described that could incorporate SGML along with other standards to facilitate discovery and retrieval of digital documents.
    [Show full text]
  • A Standard Format Proposal for Hierarchical Analyses and Representations
    A standard format proposal for hierarchical analyses and representations David Rizo Alan Marsden Department of Software and Computing Lancaster Institute for the Contemporary Arts, Systems, University of Alicante Lancaster University Instituto Superior de Enseñanzas Artísticas de la Bailrigg Comunidad Valenciana Lancaster LA1 4YW, UK Ctra. San Vicente s/n. E-03690 [email protected] San Vicente del Raspeig, Alicante, Spain [email protected] ABSTRACT portant place in historical research, in pedagogy, and even in such In the realm of digital musicology, standardizations efforts to date humble publications as concert programme notes. have mostly concentrated on the representation of music. Anal- Standard text is generally a crucial part of music analyses, often yses of music are increasingly being generated or communicated augmented by specialist terminology, and frequently accompanied by digital means. We demonstrate that the same arguments for the by some form of diagram or other graphical representation. There desirability of standardization in the representation of music apply are well established ways of representing texts in digital form, but also to the representation of analyses of music: proper preservation, not for the representation of analytical diagrams. In some cases sharing of data, and facilitation of digital processing. We concen- the diagrams are very like music notation, with just the addition of trate here on analyses which can be described as hierarchical and textual labels, brackets or a few other symbols (see Figure 1). In show that this covers a broad range of existing analytical formats. other cases they are more elaborate, and might not make direct use We propose an extension of MEI (Music Encoding Initiative) to al- of musical notation at all.
    [Show full text]
  • Syllabus FREN379 Winter 2020
    Department of French and Italian Studies University of Washington Winter 2020 FRENCH 379 Eighteenth-Century France Through Digital Archives and Tools Tues, Thurs 1:30-3:20 Denny 159 Geoffrey Turnovsky ([email protected]) Padelford C-255; 685-1618 Office Hours: M 1-3pm and by appointment Description. The last decade or two has witnessed a huge migration of texts and data onto digital platforms, where they can be accessed, in many cases, by anyone anywhere. This is a terrific benefit to students and teachers alike, who otherwise wouldn't be able to consult these materials; and it has transformed the kind of work and research we can do in the French program and in the Humanities. We can now discover obscure, archival documents which we would never have been able to find in the past. And we can look at classic works in their original forms, rather than in contemporary re-editions that often change and modernize the works. Yet this ease of access brings challenges: to locate these resources on the web, to assess their quality and reliability, and to understand how to use them, as primary sources and “data”, and as new research technologies. The PDF of a first edition downloaded through Google Books certainly looks like the historical printed book it reproduces; but it is not that printed book. It is a particular image of one copy of it, created under certain conditions and it can be a mistake to forget the difference. In this course, we'll explore a variety of digital archives, databases and tools that are useful for studying French cultural history.
    [Show full text]
  • Deliverable 5.2 Score Edition Component V2
    Ref. Ares(2021)2031810 - 22/03/2021 TROMPA: Towards Richer Online Music Public-domain Archives Deliverable 5.2 Score Edition Component v2 Grant Agreement nr 770376 Project runtime May 2018 - April 2021 Document Reference TR-D5.2-Score Edition Component v2 Work Package WP5 - TROMPA Contributor Environment Deliverable Type Report Dissemination Level PU Document due date 28 February 2021 Date of submission 28 February 2021 Leader GOLD Contact Person Tim Crawford (GOLD) Authors Tim Crawford (GOLD), David Weigl, Werner Goebl (MDW) Reviewers David Linssen (VD), Emilia Gomez, Aggelos Gkiokas (UPF) TR-D5.2-Score Edition Component v2 1 Executive Summary This document describes tooling developed as part of the TROMPA Digital Score Edition deliverable, including an extension for the Atom text editor desktop application to aid in the finalisation of digital score encodings, a Javascript module supporting selection of elements upon a rendered digital score, and the Music Scholars Annotation Tool, a web app integrating this component, in which users can select, view and interact with musical scores which have been encoded using the MEI (Music Encoding Initiative) XML format. The most important feature of the Annotation Tool is the facility for users to make annotations to the scores in a number of ways (textual comments or cued links to media such as audio or video, which can then be displayed in a dedicated area of the interface, or to external resources such as html pages) which they ‘own’, in the sense that they may be kept private or ‘published’ to other TROMPA users of the same scores. These were the main requirements of Task 5.2 of the TROMPA project.
    [Show full text]
  • Introduction
    C. M. SPERBERG-MCQUEEN Editor Text Encoding Initiative University of Illinois at Chicago The Text Encoding Initiative: Electronic Text Markup for Research ABSTRACT This paper describes the goals and work of the Text Encoding Initiative (TEI), an international cooperative project to develop and disseminate guidelines for the encoding and interchange of electronic text for research purposes. It begins by outlining some basic problems that arise in the attempt to represent textual material in computers and some problems that arise in the attempt to encourage the sharing and reuse of electronic textual resources. These problems provide the necessary background for a brief review of the origins and organization of the Text Encoding Initiative itself. Next, the paper describes the rationale for the decision of the TEI to use the Standard Generalized Markup Language (SGML) as the basis for its work. Finally, the work accomplished by the TEI is described in general terms, and some attempt is made to clarify what the project has and has not accomplished. INTRODUCTION This paper describes the goals and work of the Text Encoding Initiative (TEI), an international cooperative project to develop and disseminate guidelines for the encoding and interchange of electronic text for research purposes. In the simplest possible terms, the TEI is an attempt to find better ways to put texts into computers for the purposes of doing research that uses those texts. 35 36 CM. SPERBERG-MCQUEEN The paper will first discuss some basic problems involved in that process, then some practical aspects of the reuse and reusability of textual resources. With the context thus clarified, the origins and organization of the TEI itself can then be described briefly, along with the reasons behind the decision of the TEI to use the Standard Generalized Markup Language (SGML) as the basis for its work.
    [Show full text]
  • Text Encoding Initiative Semantic Modeling. a Conceptual Workflow Proposal
    Text Encoding Initiative semantic modeling. A conceptual workflow proposal Fabio Ciotti1, Marilena Daquino2, and Francesca Tomasi2 1 Department of Humanities, University of Roma, Italy [email protected] 2 Department of Classical Philology and Italian Studies, University of Bologna, Italy {marilena.daquino2, francesca.tomasi}@unibo.it Abstract. In this paper we present a proposal for the XML TEI semantic enhancement, through an ontological modelization based on a three level approach: an ontological generalization of the TEI schema; an intensional semantics of TEI elements; an extensional semantics of the markup content. A possible TEI semantic enhancement will be the result of these three levels dialogue and combination. We conclude with the ontology mapping issue and a Linked Open Data suggestion for digital libraries based on XML TEI semantically enriched model. Keywords: ontology, TEI, XML, interoperability, LOD, digital libraries. 1 Introduction Digital libraries are moving towards a radical identity redefinition. Semantic Web technologies are, in particular, contributing to increase the expressivity of the digital library as an unexplored reservoir of raw data, on which keyword as ontologies, RDF, OWL, metadata and controlled vocabularies play a crucial role. “Yet semantic technologies offer a new level of flexibility, interoperability, and relationships for digital repositories” [1]. Typically XML is the meta-language used in order to populate libraries with documents aiming at ensuring the maximum syntactic interchange, even between technological heterogeneous repositories. In the „humanistic community‟ XML is commonly used in combination with TEI (Text Encoding Initiative)1, the „controlled vocabulary‟ for declaring humanistic-domain-based interpretations. TEI is a flexible and customizable schema that represents a shared approach in the community, demonstrated by the fact that the most of existent digital libraries of national textual traditions are based on this standard2.
    [Show full text]
  • Markup Languages and TEI XML Encoding
    Methods and tools for Digital Philology: markup languages and TEI XML encoding Digital Tools for Humanists Summer School 2019 Pisa, 10-14 June 2019 Roberto Rosselli Del Turco Dipartimento di Studi Umanistici Università di Torino [email protected] XML encoding Markup languages there are many markup languages, which differ greatly fundamental distinction: procedural markup vs. descriptive markup procedural markup is typical of word processors: instructions for specifying where the characters should appear on the page, their appearance, etc. WYSIWYG approach, but also see LaTeX the user doesn’t see or modify the markup directly (but again see LaTeX) descriptive markup describes text this distinction isn’t as neat as one would love to think, see for instance the structural aspect of text 2 XML encoding Descriptive markup allows the scholar to do a semantic annotation of text the current standard is the XML language (← SGML) in spite of the multiple hierarchies problem XML has been used to produce many different encoding schemas: TEI schemas for all types of texts TEI-derived schemas: EpiDoc, MEI, CEI, etc. other schemas: DOCBOOK, MML – Music Markup Language, MathML, SVG, etc. it is also possible to create a personal encoding schema, but you would need a very good reason not to use TEI XML 3 Il linguaggio XML Markup languages: XML SGML is the “father” of XML (eXtensible Markup Language) XML was created to replace both SGML, offering similar characteristics but a much lower complexity, and also HTML, going beyond the intrinsic
    [Show full text]
  • Belouin and Wang 027.7 Article Savable
    Designing an API-based protocol for the interoperability of textual resources Pascal Belouin and Sean Wang Max Planck Institute for the History of Science, Germany Email: <FirstInitialLastName>@mpiwg-berlin.mpg.de Abstract Designing a protocol for the interoperability of digital textual resources—or, more simply, a “IIIF for texts”—remains a challenge, as such a protocol must cater to their vastly heterogenous formats, structures, languages, text encodings and metadata. There have been many attempts to propose a standard for textual resource interoperability, from the ubiquitous Text Encoding Initiative (TEI) format to more recent proposals like the Distributed Text Services (DTS) protocol. In this paper, we critically survey these attempts and introduce our proposal called SHINE, which aims to escape from TEI’s legacy and prioritize instead the ease for software developers to representation and exchange textual resources and their associated metadata. We do so by combining a hierarchical model of textual structure with a flexible metadata scheme in SHINE, and we continue to define and develop it based on user-centered and iterative design principles. Therefore, we argue that SHINE is a protocol for textual interoperability that successfully balances flexibility of resource representation, consistency across resource representation, and overall simplicity of implementation. 1. Introduction Internet and the digitization of sources profoundly changed the research process in the humanities. Researchers in text-centric disciplines like history and literature now access primary and secondary sources from different providers online in various formats (such as web pages, PDF files, Microsoft Word documents, or TEI documents). While many could be downloaded and saved locally (or on the cloud), others are locked in online read-only platforms.
    [Show full text]
  • Baskerville the Annals of the UK TEX Users’ Group Guest Editor: Kaveh Bazargan Vol
    Baskerville The Annals of the UK TEX Users’ Group Guest Editor: Kaveh Bazargan Vol. 7 No. 1 ISSN 1354–5930 September 1997 Articles may be submitted via electronic mail to [email protected], or on MSDOS-compatible discs, to Sebastian Rahtz, Elsevier Science Ltd, The Boulevard, Langford Lane, Kidlington, Oxford OX5 1GB, to whom any correspondence concerning Baskerville should also be addressed. This reprint of Baskerville is set in Times Roman, with Computer Modern Typewriter for literal text; the source is archived on CTAN in usergrps/uktug. Back issues from the previous 12 months may be ordered from UKTUG for £2 each; earlier issues are archived on CTAN in usergrps/uktug. Please send UKTUG subscriptions, and book or software orders, to Peter Abbott, 1 Eymore Close, Selly Oak, Birmingham B29 4LB. Fax/telephone: 0121 476 2159. Email enquiries about UKTUG to uktug- [email protected]. Contents 1 Editorial . 2 I The Future of Document Formatting (Working Paper) :::::::::::::::::::::::::::::::::::::::::::::::::: 3 1 Abstract . 3 2 Introduction . 3 3 Requirements . 4 3.1 Editability . 4 3.2 Extensibility . 4 3.3 Generality . 6 3.4 Optimality . 6 4 Conclusion . 8 5 Acknowledgements . 8 II Standard DTDs and scientific publishing:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 10 1 Abstract . 10 2 Introduction . 10 3 Scientific publishing . 10 4 Encoding of mathematical formulas . 11 4.1 Characteristics of mathematical notation . 12 4.2 Who performs the markup of math? . 13 4.3 Feasibility of S-type notation . 14 4.4 Some problems with existing languages . 14 5 Re-using mathematical formulas . 15 6 Related problems . 15 7 Conclusions . 16 III A LATEX Tour, part 3: mfnfss, psnfss and babel::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 18 1 Introduction .
    [Show full text]
  • A Unified Model for Text Markup: TEI, Docbook, and Beyond File:///TEI/Talks/2004-04-18-Xmleurope/Gca/X.Html
    A unified model for text markup: TEI, Docbook, and beyond file:///TEI/Talks/2004-04-18-xmleurope/gca/x.html A unified model for text markup: TEI, Docbook, and beyond Keywords: TEI (Text Encoding Initiative), Docbook, Relax NG schema Sebastian Rahtz Oxford University Computing Services Oxford United Kingdom [email protected] http://www.oucs.ox.ac.uk/ Biography Sebastian Rahtz works for Oxford University in IT support as an Information Manager. In his copious spare work time he is also a member of the Board of Directors and Technical Council of the Text Encoding Initiative Consortium, manager of the UK JISC-funded Open Source Advisory Service, a long-time TeX bore, and an open source bigot. Norman Walsh Sun Microsystems USA [email protected] http://www.nwalsh.com Biography Norman Walsh is an XML Standards Architect in the Web Technologies and Standards group at Sun Microsystems, Inc. Norm is an active participant in a number of standards efforts worldwide, including the XML Core and XSL Working Groups of the World Wide Web Consortium where he is also an elected member of the Technical Architecture Group, the OASIS RELAX NG Committee, the OASIS Entity Resolution Committee for which he is the editor, and the OASIS DocBook Technical Committee, which he chairs. He is the principal author of DocBook: The Definitive Guide, published by O'Reilly & Associates. Lou Burnard Oxford University Computing Services Oxford United Kingdom [email protected] http://www.oucs.ox.ac.uk/ 1 of 19 03/17/04 21:43 A unified model for text markup: TEI, Docbook, and beyond file:///TEI/Talks/2004-04-18-xmleurope/gca/x.html Biography Lou Burnard is co-editor of the Text Encoding Initiative Guidelines, Assistant Director of Oxford University Computing Services and has been involved in text encoding, linguistic computing and general humanities computing since the dawn of time.
    [Show full text]