| Style Sheet |
|
Text |
|
Translates to |
Comment
|
| OntoDL |
|
|
|
#heading 2 codesystem .Name
|
|
|
|
The OntoDL Macro interpreter is advised to generate codesystem definitions from level-2 headings. The text of the respective headlines shall be taken as the value of the codesystem's Name property (which is as well the name of the codesystem).
|
| OntoDL |
|
|
|
#heading 3-4 concept .Name
|
|
|
|
The OntoDL Macro interpreter is advised to generate concept definitions from level-3 and level-4 headings. The text of the respective headlines shall be taken as the value of the concept's Name property (which is as well the name of the concept).
|
| OntoDL |
|
|
|
|
|
| Überschrift 2 |
|
|
|
define codesystem (Animals) { |
We are entering a level-2 chapter within the document. Everything within this chapter is part of the definition scope of the corresponding codesystem definition.
|
| Überschrift 3 |
|
|
|
define concept (Birds) { |
We are entering a level-3 section within the document. Everything within this section is part of the definition scope of the concept named "Birds".
|
| Überschrift 4 |
|
|
|
define concept (Parrot) { |
We are entering a level-4 section within the document. Everything within this section is part of the definition scope of the concept "Parrot". As the level-4 section is within the level-3 section the concept "Parrot" is defined within the definition scope oft he concept "Birds" which makes it a sub-concept of "Birds".
|
| Überschrift 4 |
|
|
|
} define concept (Eagle) { |
The definiton scope of "Parrot" is clodes due to the beginning of a new level-4 section. The concept "Eagle" is defined within the definition scope of the concept "Birds" which makes it another sub-concept of this concept.
|
| Überschrift 3 |
|
|
|
} } define concept (Mamals) { |
While beginning a new level-3 section, the definition scopes associated to the open level-4 section ("Eagle") and level-3 section ("Birds") are closed.
|
| Überschrift 4 |
|
|
|
define concept (Mouse) { |
|
| Standard |
|
|
|
} } } |
The text ends. All open definition scopes ("Mouse", "Mamals" and "Animals") are closed.
|