-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from michmech/master
various updates
- Loading branch information
Showing
105 changed files
with
1,593 additions
and
1,401 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" | ||
"http://www.docbook.org/xml/4.5/docbookx.dtd" [ | ||
<!ENTITY % xinclude SYSTEM "../../docbook/xinclude.mod" > | ||
%xinclude; | ||
<!ENTITY % local.common.attrib "xml:base CDATA #IMPLIED" > | ||
]> | ||
|
||
<section id="ex23"> | ||
|
||
<title>Modelling etymology</title> | ||
<example> | ||
<title>Pseudocode</title> | ||
<programlisting> | ||
- entry (id: cat-n, headword: cat) | ||
- sense ... | ||
- etymology | ||
- origin | ||
- etymon (language: enm, text: catte) | ||
- origin | ||
- etymon (language: ang, text: catt, translation: male cat) | ||
- etymon (language: ang, text: catte, translation: female cat) | ||
- origin | ||
- etymon (language: gem-x-proto, text: kattuz, reconstructed: true) | ||
</programlisting> | ||
</example> | ||
<example> | ||
<title>XML</title> | ||
<programlisting> | ||
<entry id="cat-n"> | ||
<headword>cat</headword> | ||
<sense>...</sense> | ||
<etymology> | ||
<origin> | ||
<etymon language="enm"> | ||
<text>catte</text> | ||
</etymon> | ||
</origin> | ||
<origin> | ||
<etymon language="ang"> | ||
<text>catt</text> | ||
<translation>male cat</translation> | ||
</etymon> | ||
<etymon language="ang"> | ||
<text>catte</text> | ||
<translation>female cat</translation> | ||
</etymon> | ||
</origin> | ||
<origin> | ||
<etymon language="gem-x-proto" reconstructed="true"> | ||
<text>kattuz</text> | ||
</etymon> | ||
</origin> | ||
</etymology> | ||
</entry> | ||
</programlisting> | ||
</example> | ||
<example> | ||
<title>JSON</title> | ||
<programlisting> | ||
{ | ||
"id": "cat-n", | ||
"headword": "cat", | ||
"senses": [...], | ||
"etymology": { | ||
"origins" [{ | ||
"etymons": [ | ||
{"language": "enm", "text": "catte"} | ||
] | ||
}, { | ||
"etymons": [ | ||
{"language": "ang", "text": "catt", "translation": "male cat"}, | ||
{"language": "ang", "text": "catte", "translation": "female cat"} | ||
] | ||
}, { | ||
"etymons": [ | ||
{"language": "gem-x-proto", "text": "kattuz", "reconstructed": true} | ||
] | ||
}] | ||
} | ||
} | ||
</programlisting> | ||
</example> | ||
</section> |
3 changes: 3 additions & 0 deletions
3
dmlex-v1.0/specification/modules/annotation/databaseDiagrams/collocateMarker.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.