Difference between revisions of "Secondary files (Mondrian)"

From XML
Jump to: navigation, search
(Created page with "==Bibliography== The bibliography is stored in a file called biblio.xml. It is divided into one or more listBibl elements that contain the bibl elements that describe the bib...")
 
 
(3 intermediate revisions by the same user not shown)
Line 3: Line 3:
 
The bibliography is stored in a file called biblio.xml. It is divided into one or more listBibl elements that contain the bibl elements that describe the bibliographical items.  
 
The bibliography is stored in a file called biblio.xml. It is divided into one or more listBibl elements that contain the bibl elements that describe the bibliographical items.  
  
bibl elements have an xml:id attribute that can be used to point to the item. Titles are tagged as <title>. The @level attribute on the titles is used to indicate whther the titles refers to an article, monography, series or journal.   
+
<bibl> elements have an xml:id attribute that can be used to point to the item. Titles are tagged as <title>. The @level attribute on the titles is used to indicate whther the titles refers to an article, monography, series or journal.   
  
 
Example:  
 
Example:  
Line 13: Line 13:
  
 
Stored in intro.xml. Uses TEI Lite.  
 
Stored in intro.xml. Uses TEI Lite.  
 
  
 
==Recurring notes to persons and other subjects==
 
==Recurring notes to persons and other subjects==
Line 19: Line 18:
 
Stored in notes.xml.  
 
Stored in notes.xml.  
  
Is divided into one or more sections (<div>s). Each note is its own div within these sections. It has an @xml:id attribute that can be pointed to from elsewhere. The note may have a <head> and can consist of multiple paragraphs.  
+
Is divided into one or more sections (&lt;div>s). Each note is its own div within these sections. It has an @xml:id attribute that can be pointed to from elsewhere. The note may have a <head> and can consist of multiple paragraphs.  
  
 
In the letter texts and notes references to these notes can be made using <seg> elements with an @ana attribute.  
 
In the letter texts and notes references to these notes can be made using <seg> elements with an @ana attribute.  
Line 43: Line 42:
  
 
==See also==
 
==See also==
 +
* [[Secondary files]]
 
* [[XML Mondrian Guidelines]]
 
* [[XML Mondrian Guidelines]]
  
 
[[Category:XML Mondrian]]
 
[[Category:XML Mondrian]]

Latest revision as of 15:03, 15 February 2017

Bibliography

The bibliography is stored in a file called biblio.xml. It is divided into one or more listBibl elements that contain the bibl elements that describe the bibliographical items.

<bibl> elements have an xml:id attribute that can be used to point to the item. Titles are tagged as <title>. The @level attribute on the titles is used to indicate whther the titles refers to an article, monography, series or journal.

Example:

<bibl xml:id="VanTilborgh2007">Tilborgh, Louis van, <title level="a">Van Gogh in Cormon’s studio: a chronological puzzle</title>, in <title level="m">Current issues in 19th-century art</title>. <title level="s">Van Gogh Studies</title> 1. Zwolle and Amsterdam 2007, pp. 52-71.</bibl>

Introduction

Stored in intro.xml. Uses TEI Lite.

Recurring notes to persons and other subjects

Stored in notes.xml.

Is divided into one or more sections (<div>s). Each note is its own div within these sections. It has an @xml:id attribute that can be pointed to from elsewhere. The note may have a <head> and can consist of multiple paragraphs.

In the letter texts and notes references to these notes can be made using <seg> elements with an @ana attribute.

Example:

in notes.xml:
<div>
   <head>Notes about persons</head>
   <div xml:id="vandoesburg">
      <head>Theo van Doesburg</head>
      <p>Van Doesburg was een kunstenaar .... Mondriaan leerde hem kennen op .... Hun correspondentie strekte zich uit over ...</p>
      <p>Nog een alinea</p>
   </div>
   <!-- more divs ....  -->
</div>

In the letter xml:

Over <seg ana="notes.xml#vandoesburg"><rs type="person" key="23481">Van Doesburg</rs></seg> is bekend dat

Note that Van Doesburg is here encoded using both <seg> and <rs>.

See also