http://purl.org/net/hucit#TextStructure
The structure of a text: here it is represented as an abstract notion, but in reality it is determined by both logical and physical characteristics of a text.
Text often, if not always, have multiple structures, such as for instance a logical structure made of books / chapters / paragraphs, and a physical structure made of pages / columns / lines and so on. These structures do overlap with each other: e.g. a page may contain a chapter or part of it, a paragraph may be split over several lines, etc.
The composition of a textual structure can be represented by using the properties has_texual_component and part_of_component. The latter, in particular, is a recursive property and fits well the purpose of textual structures with a varying number of levels (down to the potentially deeply nested ones).
Instances of hucit:TextStructure can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class hucit:TextStructure | |||
hucit:has_element | owl:FunctionalProperty | hucit:TextElement | |
hucit:is_structure_of | owl:FunctionalProperty | hucit:SelfContainedExpression | |
From class owl:Thing | |||
dc:creator | owl:AnnotationProperty | owl:Thing | |
dc:description | owl:AnnotationProperty | owl:Thing | |
hucit:is_canonical_structure_of | owl:ObjectProperty | owl:Thing | |
hucit:is_identified_by | owl:FunctionalProperty | hucit:TextElement | |
owl:deprecated | owl:AnnotationProperty | owl:Thing | |
owl:topObjectProperty | owl:ObjectProperty | owl:Thing | |
owl:versionInfo | owl:AnnotationProperty | owl:Thing | |
rdfs:comment | owl:AnnotationProperty | owl:Thing | |
rdfs:label | owl:AnnotationProperty | owl:Thing |
@prefix : <http://purl.org/net/hucit#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
:TextStructure a owl:Class ;
rdfs:label "Text Structure"^^xsd:string ;
rdfs:comment """The structure of a text: here it is represented as an abstract notion, but in reality it is determined by both logical and physical characteristics of a text.
Text often, if not always, have multiple structures, such as for instance a logical structure made of books / chapters / paragraphs, and a physical structure made of pages / columns / lines and so on. These structures do overlap with each other: e.g. a page may contain a chapter or part of it, a paragraph may be split over several lines, etc.
The composition of a textual structure can be represented by using the properties has_texual_component and part_of_component. The latter, in particular, is a recursive property and fits well the purpose of textual structures with a varying number of levels (down to the potentially deeply nested ones)."""^^xsd:string ;
rdfs:subClassOf :ConceptualObject .