SlideShare una empresa de Scribd logo
1 de 14
Descargar para leer sin conexión
Bringing semantic publishing
into TEI
ideas and pointers
Silvio Peroni
Fabio Vitali
Department of Computer Science and Engineering
University of Bologna
Italy
Outline
•  Semantic publishing
•  SPAR ontologies and semantic lenses
•  TEI and EARMARK
Semantic Web / Open Linked Data
Yet another definition of Semantic Web:
The evolution of the World Wide Web encompassing the integration of the
WWW with formal semantics to:
Yet another definition of Open Linked Data:
The incremental implementation of many layers of
semantics of data released to the Commons:
•  Structured and semi-structured data
•  Abstraction and conceptualisation of data
•  Inferences on data
•  enable visualisation and elaboration of
complex data
•  provide languages (e.g., OWL) to
formalise the meaning of data (e.g.,
using description logics)
Semantic publishing
« anything that
•  enhances the meaning of a published journal article,
•  facilitates its automated discovery,
•  enables its linking to semantically related articles,
•  provides access to data within the article in actionable form, or
•  facilitates integration of data between papers.
Among other things, it involves enriching the article with appropriate
metadata that
•  are amenable to automated processing and analysis,
•  allowing enhanced verifiability of published information and
•  providing the capacity for automated discovery and summarization »
Shotton, D. (2009). Semantic publishing: the coming revolution in scientific
journal publishing. Learned Publishing, 22(2): 85–94. DOI: 10.1087/2009202
Why Semantic Publishing?
•  Increase the intrinsic value of publications,
•  Increase the richness of information, understanding
and knowledge that can be extracted from
publications;
•  Enable the development of additional services
•  Integrate information from multiple enhanced articles,
•  Provide additional business opportunities for the
publishers
Goals of semantic publishing
•  Evaluating the pertinence of a document to a scientific field
•  Discovering research trends and propagation of research findings
•  Tracking of research activities, institutions and disciplines
•  Analysing quantitative aspects of the output of researchers
•  Evaluating the multi-disciplinarity of the output of scholars
•  Measuring positive/negative citations to a particular work
•  Designing and including algorithms to compute metrics indicators
•  Helping final users to find related materials to a topic and/or article
•  Evaluating the social acceptability of the scientific production
•  Enabling users to annotate documents with related semantic data
•  Querying (semantic) bibliographic data
SPAR
•  One of the most complete
set of ontologies to
describe scholarly objects
•  It uses:
–  Common vocabulary of
terms
–  External metadata
schemas (SKOS, PRISM,
DC)
–  FRBR concepts to
distinguish between work,
version, edition and copy
–  Document components
–  Roles of people, status of
documents and publishing
workflows
–  Citations, citation contexts,
reference lists
Semantic lenses
•  Particular points of
view on scholarly
entities
•  Contextual data:
–  Research context
–  Roles and contribution
–  Publishing context
•  Content data:
–  Text:
•  Text structure
•  Rhetoric
–  Message:
•  Argumentation
•  Citation network
•  Textual semantics
An example
The Tempest by William Shakespeare
as available in the Oxford Text Archive
:work a fabio:Play ; frbr:realization :expression ;!
dcterms:creator [ a foaf:Person ; foaf:name “William Shakespeare” ] .!
!
:expression a fabio:Book ; frbr:embodiment :manifestation .!
!
:manifestation a fabio:DigitalManifestation ; frbr:exemplar :item ;!
dcterms:format [ a dcterms:MediaType ; dcterms:description “application/tei+xml”] ;!
dcterms:publisher [ a foaf:Organization ; foaf:name “OUCS” ] ; !
!
:item a fabio:ComputerFile ; fabio:storedOn fabio:web .!
Closed view
dbpedia:The_Tempest a fabio:Play ; frbr:realization <http://ota.ox.ac.uk/id/5725> ;!
dcterms:creator dbpedia:William_Shakespeare .!
!
<http://ota.ox.ac.uk/id/5725> a fabio:Book ; !
frbr:embodiment <http://ota.ox.ac.uk/text/5725/xml> .!
!
<http://ota.ox.ac.uk/text/5725/xml> a fabio:DigitalManifestation ; !
frbr:exemplar <http://ota.ox.ac.uk/text/5725.xml> ; dcterms:format application:tei+xml ; 

dcterms:publisher dbpedia:Oxford_University_Computing_Services .!
!
<http://ota.ox.ac.uk/text/5725.xml> a fabio:ComputerFile ; fabio:storedOn fabio:web .!
Open (Linked Data) View
Annotating the content
<body> !
...!
<sp> !
<speaker rend="italic">Ari.</speaker>!
<ab>!
All haile, great Master, graue Sir, haile: I come<lb n="301"/>!
To answer thy best pleasure; be’t to fly,<lb n="302"/>!
To swim, to diue into the fire: to ride<lb n="303"/>!
On the curld clowds: to thy strong bidding,taske<lb n="304"/>!
<hi rend="italic">Ariel,</hi> and all his Qualitie.<lb n="305"/>!
</ab>!
</sp>!
<sp> !
<speaker rend="italic">Pro.</speaker>!
<ab>!
Hast thou, Spirit,<lb n="306"/> !
Performd to point, the Tempest that I !
<seg type="homograph">bad</seg> thee.<lb n="307"/>!
</ab>!
</sp>!
... !
</body>!
“Ari.”, “Ariel”, “Spirit” refer to the same entity
“Master.”, “Pro.” refer to the same entity
Both are defined in DBPedia!
How can I annotate such an XML document
without having permission to modify it?
•  The Extremely Annotational RDF
Markup, a.k.a. EARMARK, is an
OWL 2 DL ontology that defines
document meta-markup
•  It is an ontologically precise
definition of markup that
instantiates the markup of a text
document as an independent OWL
document outside of the text strings
it annotates
•  It can define structures such as
trees or graphs (i.e. overlapping
markup) and can be used to
generate validity constraints
(including co-constraints currently
unavailable in most validation
languages)
•  Using the Linguistic Meta-Model, it
becomes possible to express and
assess facts, constraints and rules
about the markup structure as well
as about the semantics of the
content of the document
URIDocuverse to define the whole textual
content of the document to annotate – in this
case the Oxford Text Archive TEI version of the
play The Tempest, available at a particular URL
PointerRange to define textual ranges upon it
LinguisticAct to represent annotations made on
ranges by someone at a certain time
Multiple interpretations
<ab>!
All haile, great Master, graue Sir, haile: I come<lb n="301"/>!
...!
</ab>!
# The textual content of the document to annotate !
:content a earmark:URIDocuverse ;!
earmark:hasContent "http://ota.ox.ac.uk/text/5725.xml"^^xsd:anyURI .!
# The string "Master"!
:master-string a earmark:PointerRange ;!
earmark:refersTo :content ;!
earmark:begins "34023"^^xsd:nonNegativeInteger ; !
earmark:ends "34029"^^xsd:nonNegativeInteger .!
# Silvio’s interpretation!
:prospero-as-person a la:LinguisticAct ;!
la:hasInformationEntity :master-string ; !
la:hasReference dbpedia:Prospero ; !
la:hasMeaning foaf:Person ; !
prov:wasAttributedTo :silvio ; !
prov:generatedAtTime!
"2013-06-18T17:23:23Z"^^xsd:dateTime .!
# Fabio’s interpretation!
:prospero-as-character a la:LinguisticAct ;!
la:hasInformationEntity :master-string ; !
la:hasReference dbpedia:Prospero ; !
la:hasMeaning yago:ShakespeareanCharacters ;!
prov:wasAttributedTo :fabio; !
prov:generatedAtTime!
"2013-07-23T17:45:23Z"^^xsd:dateTime .!
Conclusions
•  Semantic Publishing is a natural and inevitable
evolution of the technological advances of the
publishing industry
•  Shared ontologies are the only way to provide
interoperability of data between publishers
•  SPAR and Earmark do provide interesting contact
points between metadata hidden in XML vocabularies
and shared publishing ontologies
•  TEI, which is orthogonal to these languages, can and
should work well with them.
Thank you for your attention
Emails:
essepuntato@cs.unibo.it
fabio@cs.unibo.it

Más contenido relacionado

La actualidad más candente

Psychology Beg Res08
Psychology Beg Res08Psychology Beg Res08
Psychology Beg Res08annbee
 
COMM 1180 Level 2 - MET (Neigh) March 2013
COMM 1180 Level 2 - MET (Neigh) March 2013COMM 1180 Level 2 - MET (Neigh) March 2013
COMM 1180 Level 2 - MET (Neigh) March 2013Melanie Parlette-Stewart
 
Current metadata landscape in the library world (Getaneh Alemu)
Current metadata landscape in the library world (Getaneh Alemu)Current metadata landscape in the library world (Getaneh Alemu)
Current metadata landscape in the library world (Getaneh Alemu)Getaneh Alemu
 
Lib 103 fall 2010 third ed textbook
Lib 103 fall 2010 third ed textbookLib 103 fall 2010 third ed textbook
Lib 103 fall 2010 third ed textbookPAPrice
 
Overbeeke
OverbeekeOverbeeke
Overbeekeanesah
 
Enrichment and Europeana
Enrichment and EuropeanaEnrichment and Europeana
Enrichment and EuropeanaAntoine Isaac
 
Literature search techniques
Literature search techniquesLiterature search techniques
Literature search techniquesAhmed Elfaitury
 
Text mining and analytics v6 - p1
Text mining and analytics   v6 - p1Text mining and analytics   v6 - p1
Text mining and analytics v6 - p1Dave King
 
Metadata for researchers
Metadata for researchers Metadata for researchers
Metadata for researchers Getaneh Alemu
 
The role of metadata for discovery: tips for content providers
The role of metadata for discovery: tips for content providersThe role of metadata for discovery: tips for content providers
The role of metadata for discovery: tips for content providersGetaneh Alemu
 
Topic Maps - Human-oriented semantics?
Topic Maps - Human-oriented semantics?Topic Maps - Human-oriented semantics?
Topic Maps - Human-oriented semantics?Lars Marius Garshol
 
Literature Search Importance & Techniques
Literature Search   Importance & TechniquesLiterature Search   Importance & Techniques
Literature Search Importance & TechniquesDr. Rupak Chakravarty
 
Search of the Evidence: Effective Use of ICT
Search of the Evidence: Effective Use of ICTSearch of the Evidence: Effective Use of ICT
Search of the Evidence: Effective Use of ICTDave Marcial
 
Bibliometrix Seminar
Bibliometrix SeminarBibliometrix Seminar
Bibliometrix SeminarMassimo Aria
 

La actualidad más candente (20)

Psychology Beg Res08
Psychology Beg Res08Psychology Beg Res08
Psychology Beg Res08
 
Snac webinar v3
Snac webinar v3Snac webinar v3
Snac webinar v3
 
LISTA Database Analysis
LISTA Database AnalysisLISTA Database Analysis
LISTA Database Analysis
 
COMM 1180 Level 2 - MET (Neigh) March 2013
COMM 1180 Level 2 - MET (Neigh) March 2013COMM 1180 Level 2 - MET (Neigh) March 2013
COMM 1180 Level 2 - MET (Neigh) March 2013
 
Current metadata landscape in the library world (Getaneh Alemu)
Current metadata landscape in the library world (Getaneh Alemu)Current metadata landscape in the library world (Getaneh Alemu)
Current metadata landscape in the library world (Getaneh Alemu)
 
Lib 103 fall 2010 third ed textbook
Lib 103 fall 2010 third ed textbookLib 103 fall 2010 third ed textbook
Lib 103 fall 2010 third ed textbook
 
Overbeeke
OverbeekeOverbeeke
Overbeeke
 
co:op-READ-Convention Marburg - Basilis Gatos
co:op-READ-Convention Marburg - Basilis Gatosco:op-READ-Convention Marburg - Basilis Gatos
co:op-READ-Convention Marburg - Basilis Gatos
 
COMM1165 - Level 2 - MSE (Guo) Feb 2013
COMM1165 - Level 2 - MSE (Guo) Feb 2013COMM1165 - Level 2 - MSE (Guo) Feb 2013
COMM1165 - Level 2 - MSE (Guo) Feb 2013
 
Enrichment and Europeana
Enrichment and EuropeanaEnrichment and Europeana
Enrichment and Europeana
 
Literature search techniques
Literature search techniquesLiterature search techniques
Literature search techniques
 
Text mining and analytics v6 - p1
Text mining and analytics   v6 - p1Text mining and analytics   v6 - p1
Text mining and analytics v6 - p1
 
Metadata for researchers
Metadata for researchers Metadata for researchers
Metadata for researchers
 
The role of metadata for discovery: tips for content providers
The role of metadata for discovery: tips for content providersThe role of metadata for discovery: tips for content providers
The role of metadata for discovery: tips for content providers
 
Topic Maps - Human-oriented semantics?
Topic Maps - Human-oriented semantics?Topic Maps - Human-oriented semantics?
Topic Maps - Human-oriented semantics?
 
Endeca
EndecaEndeca
Endeca
 
Literature Search Importance & Techniques
Literature Search   Importance & TechniquesLiterature Search   Importance & Techniques
Literature Search Importance & Techniques
 
Search of the Evidence: Effective Use of ICT
Search of the Evidence: Effective Use of ICTSearch of the Evidence: Effective Use of ICT
Search of the Evidence: Effective Use of ICT
 
ERIC
ERICERIC
ERIC
 
Bibliometrix Seminar
Bibliometrix SeminarBibliometrix Seminar
Bibliometrix Seminar
 

Destacado

Lecture 4: A Short Introduction to the Semantic Web
Lecture 4: A Short Introduction to the Semantic WebLecture 4: A Short Introduction to the Semantic Web
Lecture 4: A Short Introduction to the Semantic Web6500jmk4
 
Lecture 4: Metadata
Lecture 4: MetadataLecture 4: Metadata
Lecture 4: Metadata6500jmk4
 
social psycho research project
social psycho research projectsocial psycho research project
social psycho research projectJian Leo
 
Les fortifications de la Ville de Québec / Restauration de la maçonnerie
Les fortifications de la Ville de Québec  / Restauration de la maçonnerieLes fortifications de la Ville de Québec  / Restauration de la maçonnerie
Les fortifications de la Ville de Québec / Restauration de la maçonnerieMartin Bissonnette
 
AUV-based physical, biological, and acoustic observations in support of marin...
AUV-based physical, biological, and acoustic observations in support of marin...AUV-based physical, biological, and acoustic observations in support of marin...
AUV-based physical, biological, and acoustic observations in support of marin...David Fratantoni
 
Francis fukuyama fin de la historia y otros escritos
Francis fukuyama   fin de la historia y otros escritosFrancis fukuyama   fin de la historia y otros escritos
Francis fukuyama fin de la historia y otros escritosAdan Rocha
 
12 слайд козацькі страви
12 слайд козацькі страви12 слайд козацькі страви
12 слайд козацькі стравиelisarius010309
 
YouTube Marketing: dos and don'ts [PL]
YouTube Marketing: dos and don'ts [PL]YouTube Marketing: dos and don'ts [PL]
YouTube Marketing: dos and don'ts [PL]Maciek Wroblewski
 
Clinical Approach of a Tooth with Radix Entomolaris and Five Root Canals
Clinical Approach of a Tooth with Radix Entomolaris and Five Root CanalsClinical Approach of a Tooth with Radix Entomolaris and Five Root Canals
Clinical Approach of a Tooth with Radix Entomolaris and Five Root CanalsAbu-Hussein Muhamad
 
Unlocking The Social Media Puzzle: Engaging The Government and Business Throu...
Unlocking The Social Media Puzzle: Engaging The Government and Business Throu...Unlocking The Social Media Puzzle: Engaging The Government and Business Throu...
Unlocking The Social Media Puzzle: Engaging The Government and Business Throu...Michael Hackmer
 
Feasible EE and RES Investments in SME Hotels in Croatia - Matija Vajdic
Feasible EE and RES Investments in SME Hotels in Croatia - Matija VajdicFeasible EE and RES Investments in SME Hotels in Croatia - Matija Vajdic
Feasible EE and RES Investments in SME Hotels in Croatia - Matija VajdicSustDevMe
 
εξισώσεις
εξισώσειςεξισώσεις
εξισώσειςdimandres
 
Beacon, proximity marketing e user experience
Beacon, proximity marketing e user experienceBeacon, proximity marketing e user experience
Beacon, proximity marketing e user experienceLuca Rosati
 

Destacado (20)

Lecture 4: A Short Introduction to the Semantic Web
Lecture 4: A Short Introduction to the Semantic WebLecture 4: A Short Introduction to the Semantic Web
Lecture 4: A Short Introduction to the Semantic Web
 
Lecture 4: Metadata
Lecture 4: MetadataLecture 4: Metadata
Lecture 4: Metadata
 
Revista22
Revista22Revista22
Revista22
 
Presentacion
PresentacionPresentacion
Presentacion
 
social psycho research project
social psycho research projectsocial psycho research project
social psycho research project
 
Microondas BOSCH BFL634GB1
Microondas BOSCH BFL634GB1Microondas BOSCH BFL634GB1
Microondas BOSCH BFL634GB1
 
Implementasi wds di m ikrotik
Implementasi wds di m ikrotikImplementasi wds di m ikrotik
Implementasi wds di m ikrotik
 
Comunicacion
ComunicacionComunicacion
Comunicacion
 
Les fortifications de la Ville de Québec / Restauration de la maçonnerie
Les fortifications de la Ville de Québec  / Restauration de la maçonnerieLes fortifications de la Ville de Québec  / Restauration de la maçonnerie
Les fortifications de la Ville de Québec / Restauration de la maçonnerie
 
AUV-based physical, biological, and acoustic observations in support of marin...
AUV-based physical, biological, and acoustic observations in support of marin...AUV-based physical, biological, and acoustic observations in support of marin...
AUV-based physical, biological, and acoustic observations in support of marin...
 
Francis fukuyama fin de la historia y otros escritos
Francis fukuyama   fin de la historia y otros escritosFrancis fukuyama   fin de la historia y otros escritos
Francis fukuyama fin de la historia y otros escritos
 
task 1
task 1task 1
task 1
 
12 слайд козацькі страви
12 слайд козацькі страви12 слайд козацькі страви
12 слайд козацькі страви
 
YouTube Marketing: dos and don'ts [PL]
YouTube Marketing: dos and don'ts [PL]YouTube Marketing: dos and don'ts [PL]
YouTube Marketing: dos and don'ts [PL]
 
Clinical Approach of a Tooth with Radix Entomolaris and Five Root Canals
Clinical Approach of a Tooth with Radix Entomolaris and Five Root CanalsClinical Approach of a Tooth with Radix Entomolaris and Five Root Canals
Clinical Approach of a Tooth with Radix Entomolaris and Five Root Canals
 
Unlocking The Social Media Puzzle: Engaging The Government and Business Throu...
Unlocking The Social Media Puzzle: Engaging The Government and Business Throu...Unlocking The Social Media Puzzle: Engaging The Government and Business Throu...
Unlocking The Social Media Puzzle: Engaging The Government and Business Throu...
 
Feasible EE and RES Investments in SME Hotels in Croatia - Matija Vajdic
Feasible EE and RES Investments in SME Hotels in Croatia - Matija VajdicFeasible EE and RES Investments in SME Hotels in Croatia - Matija Vajdic
Feasible EE and RES Investments in SME Hotels in Croatia - Matija Vajdic
 
εξισώσεις
εξισώσειςεξισώσεις
εξισώσεις
 
Pensamiento Complejo
Pensamiento Complejo Pensamiento Complejo
Pensamiento Complejo
 
Beacon, proximity marketing e user experience
Beacon, proximity marketing e user experienceBeacon, proximity marketing e user experience
Beacon, proximity marketing e user experience
 

Similar a Bringing semantic publishing into TEI: ideas and pointers

The Rhetoric of Research Objects
The Rhetoric of Research ObjectsThe Rhetoric of Research Objects
The Rhetoric of Research ObjectsCarole Goble
 
RELIANCE ROHub hackathon
RELIANCE ROHub hackathonRELIANCE ROHub hackathon
RELIANCE ROHub hackathonRaul Palma
 
Supporting Open Scholarly Annotation
Supporting Open Scholarly AnnotationSupporting Open Scholarly Annotation
Supporting Open Scholarly AnnotationAnna Gerber
 
Usage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application ScenariosUsage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application ScenariosEUCLID project
 
Towards digitizing scholarly communication
Towards digitizing scholarly communicationTowards digitizing scholarly communication
Towards digitizing scholarly communicationSören Auer
 
An Introduction to Semantic Web Technology
An Introduction to Semantic Web TechnologyAn Introduction to Semantic Web Technology
An Introduction to Semantic Web TechnologyAnkur Biswas
 
FDO as building block for digitization technology stacks
FDO as building block for digitization technology stacksFDO as building block for digitization technology stacks
FDO as building block for digitization technology stacksRaul Palma
 
ontology.ppt
ontology.pptontology.ppt
ontology.pptPrerak10
 
Swap For Dummies Rsp 2007 11 29
Swap For Dummies Rsp 2007 11 29Swap For Dummies Rsp 2007 11 29
Swap For Dummies Rsp 2007 11 29Julie Allinson
 
SKOS - 2007 Open Forum on Metadata Registries - NYC
SKOS - 2007 Open Forum on Metadata Registries - NYCSKOS - 2007 Open Forum on Metadata Registries - NYC
SKOS - 2007 Open Forum on Metadata Registries - NYCjonphipps
 
LoCloud Vocabulary Services: Thesaurus management introduction, Walter Koch a...
LoCloud Vocabulary Services: Thesaurus management introduction, Walter Koch a...LoCloud Vocabulary Services: Thesaurus management introduction, Walter Koch a...
LoCloud Vocabulary Services: Thesaurus management introduction, Walter Koch a...locloud
 
Tracking Changes through EARMARK: a Theoretical Perspective and an Implementa...
Tracking Changes through EARMARK: a Theoretical Perspective and an Implementa...Tracking Changes through EARMARK: a Theoretical Perspective and an Implementa...
Tracking Changes through EARMARK: a Theoretical Perspective and an Implementa...University of Bologna
 
Social Graphs and Semantic Analytics
Social Graphs and Semantic AnalyticsSocial Graphs and Semantic Analytics
Social Graphs and Semantic AnalyticsColin Bell
 
Session 1.4 sustainable urban delta knowledge and semantic search
Session 1.4   sustainable urban delta knowledge and semantic searchSession 1.4   sustainable urban delta knowledge and semantic search
Session 1.4 sustainable urban delta knowledge and semantic searchsemanticsconference
 
Open Data - Principles and Techniques
Open Data - Principles and TechniquesOpen Data - Principles and Techniques
Open Data - Principles and TechniquesBernhard Haslhofer
 
FAIR Workflows and Research Objects get a Workout
FAIR Workflows and Research Objects get a Workout FAIR Workflows and Research Objects get a Workout
FAIR Workflows and Research Objects get a Workout Carole Goble
 
Computer Science Library Training
Computer Science Library TrainingComputer Science Library Training
Computer Science Library Trainingpvhead123
 

Similar a Bringing semantic publishing into TEI: ideas and pointers (20)

A Clean Slate?
A Clean Slate?A Clean Slate?
A Clean Slate?
 
The Rhetoric of Research Objects
The Rhetoric of Research ObjectsThe Rhetoric of Research Objects
The Rhetoric of Research Objects
 
RELIANCE ROHub hackathon
RELIANCE ROHub hackathonRELIANCE ROHub hackathon
RELIANCE ROHub hackathon
 
Supporting Open Scholarly Annotation
Supporting Open Scholarly AnnotationSupporting Open Scholarly Annotation
Supporting Open Scholarly Annotation
 
Usage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application ScenariosUsage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application Scenarios
 
Towards digitizing scholarly communication
Towards digitizing scholarly communicationTowards digitizing scholarly communication
Towards digitizing scholarly communication
 
An Introduction to Semantic Web Technology
An Introduction to Semantic Web TechnologyAn Introduction to Semantic Web Technology
An Introduction to Semantic Web Technology
 
FDO as building block for digitization technology stacks
FDO as building block for digitization technology stacksFDO as building block for digitization technology stacks
FDO as building block for digitization technology stacks
 
ontology.ppt
ontology.pptontology.ppt
ontology.ppt
 
Swap For Dummies Rsp 2007 11 29
Swap For Dummies Rsp 2007 11 29Swap For Dummies Rsp 2007 11 29
Swap For Dummies Rsp 2007 11 29
 
SKOS - 2007 Open Forum on Metadata Registries - NYC
SKOS - 2007 Open Forum on Metadata Registries - NYCSKOS - 2007 Open Forum on Metadata Registries - NYC
SKOS - 2007 Open Forum on Metadata Registries - NYC
 
LoCloud Vocabulary Services: Thesaurus management introduction, Walter Koch a...
LoCloud Vocabulary Services: Thesaurus management introduction, Walter Koch a...LoCloud Vocabulary Services: Thesaurus management introduction, Walter Koch a...
LoCloud Vocabulary Services: Thesaurus management introduction, Walter Koch a...
 
Tracking Changes through EARMARK: a Theoretical Perspective and an Implementa...
Tracking Changes through EARMARK: a Theoretical Perspective and an Implementa...Tracking Changes through EARMARK: a Theoretical Perspective and an Implementa...
Tracking Changes through EARMARK: a Theoretical Perspective and an Implementa...
 
Social Graphs and Semantic Analytics
Social Graphs and Semantic AnalyticsSocial Graphs and Semantic Analytics
Social Graphs and Semantic Analytics
 
Session 1.4 sustainable urban delta knowledge and semantic search
Session 1.4   sustainable urban delta knowledge and semantic searchSession 1.4   sustainable urban delta knowledge and semantic search
Session 1.4 sustainable urban delta knowledge and semantic search
 
Open Data - Principles and Techniques
Open Data - Principles and TechniquesOpen Data - Principles and Techniques
Open Data - Principles and Techniques
 
FAIR Workflows and Research Objects get a Workout
FAIR Workflows and Research Objects get a Workout FAIR Workflows and Research Objects get a Workout
FAIR Workflows and Research Objects get a Workout
 
From ontology to wiki
From ontology to wikiFrom ontology to wiki
From ontology to wiki
 
Apsc 100 Clinic 3 C Fall 09
Apsc 100 Clinic 3 C Fall 09Apsc 100 Clinic 3 C Fall 09
Apsc 100 Clinic 3 C Fall 09
 
Computer Science Library Training
Computer Science Library TrainingComputer Science Library Training
Computer Science Library Training
 

Más de University of Bologna

The Initiative for Open Citations and the OpenCitations Corpus
The Initiative for Open Citations and the OpenCitations CorpusThe Initiative for Open Citations and the OpenCitations Corpus
The Initiative for Open Citations and the OpenCitations CorpusUniversity of Bologna
 
A document-inspired way for tracking changes of RDF data - The case of the Op...
A document-inspired way for tracking changes of RDF data - The case of the Op...A document-inspired way for tracking changes of RDF data - The case of the Op...
A document-inspired way for tracking changes of RDF data - The case of the Op...University of Bologna
 
A Simplified Agile Methodology for Ontology Development
A Simplified Agile Methodology for Ontology DevelopmentA Simplified Agile Methodology for Ontology Development
A Simplified Agile Methodology for Ontology DevelopmentUniversity of Bologna
 
Freedom for bibliographic references: OpenCitations arise
Freedom for bibliographic references: OpenCitations ariseFreedom for bibliographic references: OpenCitations arise
Freedom for bibliographic references: OpenCitations ariseUniversity of Bologna
 
A pattern-based ontology for describing publishing workflows
A pattern-based ontology for describing publishing workflowsA pattern-based ontology for describing publishing workflows
A pattern-based ontology for describing publishing workflowsUniversity of Bologna
 
Zeri e LODE
: Extracting the Zeri photo archive to Linked Open Data: formaliz...
Zeri e LODE
: Extracting the Zeri photo archive to Linked Open Data: formaliz...Zeri e LODE
: Extracting the Zeri photo archive to Linked Open Data: formaliz...
Zeri e LODE
: Extracting the Zeri photo archive to Linked Open Data: formaliz...University of Bologna
 
Characterising citations in scholarly articles: an experiment
Characterising citations in scholarly articles: an experimentCharacterising citations in scholarly articles: an experiment
Characterising citations in scholarly articles: an experimentUniversity of Bologna
 
Towards the automatic identification of the nature of citations
Towards the automatic identification of the nature of citationsTowards the automatic identification of the nature of citations
Towards the automatic identification of the nature of citationsUniversity of Bologna
 
The Live OWL Documentation Environment: a tool for the automatic generation o...
The Live OWL Documentation Environment: a tool for the automatic generation o...The Live OWL Documentation Environment: a tool for the automatic generation o...
The Live OWL Documentation Environment: a tool for the automatic generation o...University of Bologna
 
Scholarly publishing and Linked Data: describing roles, statuses, temporal an...
Scholarly publishing and Linked Data: describing roles, statuses, temporal an...Scholarly publishing and Linked Data: describing roles, statuses, temporal an...
Scholarly publishing and Linked Data: describing roles, statuses, temporal an...University of Bologna
 
Embedding semantic annotations within texts: the FRETTA approach
Embedding semantic annotations within texts: the FRETTA approachEmbedding semantic annotations within texts: the FRETTA approach
Embedding semantic annotations within texts: the FRETTA approachUniversity of Bologna
 

Más de University of Bologna (15)

The Initiative for Open Citations and the OpenCitations Corpus
The Initiative for Open Citations and the OpenCitations CorpusThe Initiative for Open Citations and the OpenCitations Corpus
The Initiative for Open Citations and the OpenCitations Corpus
 
OpenCitations
OpenCitationsOpenCitations
OpenCitations
 
A document-inspired way for tracking changes of RDF data - The case of the Op...
A document-inspired way for tracking changes of RDF data - The case of the Op...A document-inspired way for tracking changes of RDF data - The case of the Op...
A document-inspired way for tracking changes of RDF data - The case of the Op...
 
A Simplified Agile Methodology for Ontology Development
A Simplified Agile Methodology for Ontology DevelopmentA Simplified Agile Methodology for Ontology Development
A Simplified Agile Methodology for Ontology Development
 
FOOD: FOod in Open Data
FOOD: FOod in Open DataFOOD: FOod in Open Data
FOOD: FOod in Open Data
 
Freedom for bibliographic references: OpenCitations arise
Freedom for bibliographic references: OpenCitations ariseFreedom for bibliographic references: OpenCitations arise
Freedom for bibliographic references: OpenCitations arise
 
A pattern-based ontology for describing publishing workflows
A pattern-based ontology for describing publishing workflowsA pattern-based ontology for describing publishing workflows
A pattern-based ontology for describing publishing workflows
 
Zeri e LODE
: Extracting the Zeri photo archive to Linked Open Data: formaliz...
Zeri e LODE
: Extracting the Zeri photo archive to Linked Open Data: formaliz...Zeri e LODE
: Extracting the Zeri photo archive to Linked Open Data: formaliz...
Zeri e LODE
: Extracting the Zeri photo archive to Linked Open Data: formaliz...
 
Characterising citations in scholarly articles: an experiment
Characterising citations in scholarly articles: an experimentCharacterising citations in scholarly articles: an experiment
Characterising citations in scholarly articles: an experiment
 
Towards the automatic identification of the nature of citations
Towards the automatic identification of the nature of citationsTowards the automatic identification of the nature of citations
Towards the automatic identification of the nature of citations
 
The Live OWL Documentation Environment: a tool for the automatic generation o...
The Live OWL Documentation Environment: a tool for the automatic generation o...The Live OWL Documentation Environment: a tool for the automatic generation o...
The Live OWL Documentation Environment: a tool for the automatic generation o...
 
Scholarly publishing and Linked Data: describing roles, statuses, temporal an...
Scholarly publishing and Linked Data: describing roles, statuses, temporal an...Scholarly publishing and Linked Data: describing roles, statuses, temporal an...
Scholarly publishing and Linked Data: describing roles, statuses, temporal an...
 
Embedding semantic annotations within texts: the FRETTA approach
Embedding semantic annotations within texts: the FRETTA approachEmbedding semantic annotations within texts: the FRETTA approach
Embedding semantic annotations within texts: the FRETTA approach
 
Dealing with Markup Semantics
Dealing with Markup SemanticsDealing with Markup Semantics
Dealing with Markup Semantics
 
Handling Markup Overlaps Using OWL
Handling Markup Overlaps Using OWLHandling Markup Overlaps Using OWL
Handling Markup Overlaps Using OWL
 

Último

MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistandanishmna97
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Bhuvaneswari Subramani
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Zilliz
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Victor Rentea
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityWSO2
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 

Último (20)

MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 

Bringing semantic publishing into TEI: ideas and pointers

  • 1. Bringing semantic publishing into TEI ideas and pointers Silvio Peroni Fabio Vitali Department of Computer Science and Engineering University of Bologna Italy
  • 2. Outline •  Semantic publishing •  SPAR ontologies and semantic lenses •  TEI and EARMARK
  • 3. Semantic Web / Open Linked Data Yet another definition of Semantic Web: The evolution of the World Wide Web encompassing the integration of the WWW with formal semantics to: Yet another definition of Open Linked Data: The incremental implementation of many layers of semantics of data released to the Commons: •  Structured and semi-structured data •  Abstraction and conceptualisation of data •  Inferences on data •  enable visualisation and elaboration of complex data •  provide languages (e.g., OWL) to formalise the meaning of data (e.g., using description logics)
  • 4. Semantic publishing « anything that •  enhances the meaning of a published journal article, •  facilitates its automated discovery, •  enables its linking to semantically related articles, •  provides access to data within the article in actionable form, or •  facilitates integration of data between papers. Among other things, it involves enriching the article with appropriate metadata that •  are amenable to automated processing and analysis, •  allowing enhanced verifiability of published information and •  providing the capacity for automated discovery and summarization » Shotton, D. (2009). Semantic publishing: the coming revolution in scientific journal publishing. Learned Publishing, 22(2): 85–94. DOI: 10.1087/2009202
  • 5. Why Semantic Publishing? •  Increase the intrinsic value of publications, •  Increase the richness of information, understanding and knowledge that can be extracted from publications; •  Enable the development of additional services •  Integrate information from multiple enhanced articles, •  Provide additional business opportunities for the publishers
  • 6. Goals of semantic publishing •  Evaluating the pertinence of a document to a scientific field •  Discovering research trends and propagation of research findings •  Tracking of research activities, institutions and disciplines •  Analysing quantitative aspects of the output of researchers •  Evaluating the multi-disciplinarity of the output of scholars •  Measuring positive/negative citations to a particular work •  Designing and including algorithms to compute metrics indicators •  Helping final users to find related materials to a topic and/or article •  Evaluating the social acceptability of the scientific production •  Enabling users to annotate documents with related semantic data •  Querying (semantic) bibliographic data
  • 7. SPAR •  One of the most complete set of ontologies to describe scholarly objects •  It uses: –  Common vocabulary of terms –  External metadata schemas (SKOS, PRISM, DC) –  FRBR concepts to distinguish between work, version, edition and copy –  Document components –  Roles of people, status of documents and publishing workflows –  Citations, citation contexts, reference lists
  • 8. Semantic lenses •  Particular points of view on scholarly entities •  Contextual data: –  Research context –  Roles and contribution –  Publishing context •  Content data: –  Text: •  Text structure •  Rhetoric –  Message: •  Argumentation •  Citation network •  Textual semantics
  • 9. An example The Tempest by William Shakespeare as available in the Oxford Text Archive :work a fabio:Play ; frbr:realization :expression ;! dcterms:creator [ a foaf:Person ; foaf:name “William Shakespeare” ] .! ! :expression a fabio:Book ; frbr:embodiment :manifestation .! ! :manifestation a fabio:DigitalManifestation ; frbr:exemplar :item ;! dcterms:format [ a dcterms:MediaType ; dcterms:description “application/tei+xml”] ;! dcterms:publisher [ a foaf:Organization ; foaf:name “OUCS” ] ; ! ! :item a fabio:ComputerFile ; fabio:storedOn fabio:web .! Closed view dbpedia:The_Tempest a fabio:Play ; frbr:realization <http://ota.ox.ac.uk/id/5725> ;! dcterms:creator dbpedia:William_Shakespeare .! ! <http://ota.ox.ac.uk/id/5725> a fabio:Book ; ! frbr:embodiment <http://ota.ox.ac.uk/text/5725/xml> .! ! <http://ota.ox.ac.uk/text/5725/xml> a fabio:DigitalManifestation ; ! frbr:exemplar <http://ota.ox.ac.uk/text/5725.xml> ; dcterms:format application:tei+xml ; 
 dcterms:publisher dbpedia:Oxford_University_Computing_Services .! ! <http://ota.ox.ac.uk/text/5725.xml> a fabio:ComputerFile ; fabio:storedOn fabio:web .! Open (Linked Data) View
  • 10. Annotating the content <body> ! ...! <sp> ! <speaker rend="italic">Ari.</speaker>! <ab>! All haile, great Master, graue Sir, haile: I come<lb n="301"/>! To answer thy best pleasure; be’t to fly,<lb n="302"/>! To swim, to diue into the fire: to ride<lb n="303"/>! On the curld clowds: to thy strong bidding,taske<lb n="304"/>! <hi rend="italic">Ariel,</hi> and all his Qualitie.<lb n="305"/>! </ab>! </sp>! <sp> ! <speaker rend="italic">Pro.</speaker>! <ab>! Hast thou, Spirit,<lb n="306"/> ! Performd to point, the Tempest that I ! <seg type="homograph">bad</seg> thee.<lb n="307"/>! </ab>! </sp>! ... ! </body>! “Ari.”, “Ariel”, “Spirit” refer to the same entity “Master.”, “Pro.” refer to the same entity Both are defined in DBPedia! How can I annotate such an XML document without having permission to modify it?
  • 11. •  The Extremely Annotational RDF Markup, a.k.a. EARMARK, is an OWL 2 DL ontology that defines document meta-markup •  It is an ontologically precise definition of markup that instantiates the markup of a text document as an independent OWL document outside of the text strings it annotates •  It can define structures such as trees or graphs (i.e. overlapping markup) and can be used to generate validity constraints (including co-constraints currently unavailable in most validation languages) •  Using the Linguistic Meta-Model, it becomes possible to express and assess facts, constraints and rules about the markup structure as well as about the semantics of the content of the document URIDocuverse to define the whole textual content of the document to annotate – in this case the Oxford Text Archive TEI version of the play The Tempest, available at a particular URL PointerRange to define textual ranges upon it LinguisticAct to represent annotations made on ranges by someone at a certain time
  • 12. Multiple interpretations <ab>! All haile, great Master, graue Sir, haile: I come<lb n="301"/>! ...! </ab>! # The textual content of the document to annotate ! :content a earmark:URIDocuverse ;! earmark:hasContent "http://ota.ox.ac.uk/text/5725.xml"^^xsd:anyURI .! # The string "Master"! :master-string a earmark:PointerRange ;! earmark:refersTo :content ;! earmark:begins "34023"^^xsd:nonNegativeInteger ; ! earmark:ends "34029"^^xsd:nonNegativeInteger .! # Silvio’s interpretation! :prospero-as-person a la:LinguisticAct ;! la:hasInformationEntity :master-string ; ! la:hasReference dbpedia:Prospero ; ! la:hasMeaning foaf:Person ; ! prov:wasAttributedTo :silvio ; ! prov:generatedAtTime! "2013-06-18T17:23:23Z"^^xsd:dateTime .! # Fabio’s interpretation! :prospero-as-character a la:LinguisticAct ;! la:hasInformationEntity :master-string ; ! la:hasReference dbpedia:Prospero ; ! la:hasMeaning yago:ShakespeareanCharacters ;! prov:wasAttributedTo :fabio; ! prov:generatedAtTime! "2013-07-23T17:45:23Z"^^xsd:dateTime .!
  • 13. Conclusions •  Semantic Publishing is a natural and inevitable evolution of the technological advances of the publishing industry •  Shared ontologies are the only way to provide interoperability of data between publishers •  SPAR and Earmark do provide interesting contact points between metadata hidden in XML vocabularies and shared publishing ontologies •  TEI, which is orthogonal to these languages, can and should work well with them.
  • 14. Thank you for your attention Emails: essepuntato@cs.unibo.it fabio@cs.unibo.it