SlideShare a Scribd company logo
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

More Related Content

What's hot

Psychology Beg Res08
Psychology Beg Res08Psychology Beg Res08
Psychology Beg Res08
annbee
 
Snac webinar v3
Snac webinar v3Snac webinar v3
Snac webinar v3
Brian Tingle
 
LISTA Database Analysis
LISTA Database AnalysisLISTA Database Analysis
LISTA Database Analysis
Melendra Sanders
 
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
Melanie 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 textbook
PAPrice
 
Overbeeke
OverbeekeOverbeeke
Overbeeke
anesah
 
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
ICARUS - International Centre for Archival Research
 
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
Melanie Parlette-Stewart
 
Enrichment and Europeana
Enrichment and EuropeanaEnrichment and Europeana
Enrichment and Europeana
Antoine Isaac
 
Literature search techniques
Literature search techniquesLiterature search techniques
Literature search techniques
Ahmed Elfaitury
 
Text mining and analytics v6 - p1
Text mining and analytics   v6 - p1Text mining and analytics   v6 - p1
Text mining and analytics v6 - p1
Dave 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 providers
Getaneh Alemu
 
Topic Maps - Human-oriented semantics?
Topic Maps - Human-oriented semantics?Topic Maps - Human-oriented semantics?
Topic Maps - Human-oriented semantics?
Lars Marius Garshol
 
Endeca
EndecaEndeca
Literature Search Importance & Techniques
Literature Search   Importance & TechniquesLiterature Search   Importance & Techniques
Literature Search Importance & Techniques
Dr. 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 ICT
Dave Marcial
 
ERIC
ERICERIC
ERIC
hswcau
 
Bibliometrix Seminar
Bibliometrix SeminarBibliometrix Seminar
Bibliometrix Seminar
Massimo Aria
 

What's hot (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
 

Viewers also liked

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
6500jmk4
 
Lecture 4: Metadata
Lecture 4: MetadataLecture 4: Metadata
Lecture 4: Metadata
6500jmk4
 
Revista22
Revista22Revista22
Revista22
Upcua Bosa
 
Presentacion
PresentacionPresentacion
Presentacion
Yomaira2610
 
social psycho research project
social psycho research projectsocial psycho research project
social psycho research project
Jian Leo
 
Microondas BOSCH BFL634GB1
Microondas BOSCH BFL634GB1Microondas BOSCH BFL634GB1
Microondas BOSCH BFL634GB1
Alsako Electrodomésticos
 
Implementasi wds di m ikrotik
Implementasi wds di m ikrotikImplementasi wds di m ikrotik
Implementasi wds di m ikrotik
University Muhammadiyah Maluku Utara
 
Comunicacion
ComunicacionComunicacion
Comunicacion
CARMENCTYLER
 
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
Martin 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 escritos
Adan Rocha
 
task 1
task 1task 1
task 1
asmediab15
 
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 Canals
Abu-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 Vajdic
SustDevMe
 
εξισώσεις
εξισώσειςεξισώσεις
εξισώσεις
dimandres
 
Pensamiento Complejo
Pensamiento Complejo Pensamiento Complejo
Pensamiento Complejo
Eduardo Lopez Sandoval
 
Beacon, proximity marketing e user experience
Beacon, proximity marketing e user experienceBeacon, proximity marketing e user experience
Beacon, proximity marketing e user experience
Luca Rosati
 

Viewers also liked (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 to Bringing semantic publishing into TEI: ideas and pointers

A Clean Slate?
A Clean Slate?A Clean Slate?
A Clean Slate?
Herbert Van de Sompel
 
The Rhetoric of Research Objects
The Rhetoric of Research ObjectsThe Rhetoric of Research Objects
The Rhetoric of Research Objects
Carole Goble
 
RELIANCE ROHub hackathon
RELIANCE ROHub hackathonRELIANCE ROHub hackathon
RELIANCE ROHub hackathon
Raul Palma
 
Supporting Open Scholarly Annotation
Supporting Open Scholarly AnnotationSupporting Open Scholarly Annotation
Supporting Open Scholarly Annotation
Anna 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 Scenarios
EUCLID project
 
Towards digitizing scholarly communication
Towards digitizing scholarly communicationTowards digitizing scholarly communication
Towards digitizing scholarly communication
Sören Auer
 
An Introduction to Semantic Web Technology
An Introduction to Semantic Web TechnologyAn Introduction to Semantic Web Technology
An Introduction to Semantic Web Technology
Ankur 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 stacks
Raul Palma
 
ontology.ppt
ontology.pptontology.ppt
ontology.ppt
Prerak10
 
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
Julie 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 - NYC
jonphipps
 
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 Analytics
Colin 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 search
semanticsconference
 
Open Data - Principles and Techniques
Open Data - Principles and TechniquesOpen Data - Principles and Techniques
Open Data - Principles and Techniques
Bernhard 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
 
From ontology to wiki
From ontology to wikiFrom ontology to wiki
From ontology to wiki
Open University in the Netherlands
 
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
Nasser Saleh PhD P.Eng
 
Computer Science Library Training
Computer Science Library TrainingComputer Science Library Training
Computer Science Library Training
pvhead123
 

Similar to 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
 

More from 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 Corpus
University of Bologna
 
OpenCitations
OpenCitationsOpenCitations
OpenCitations
University 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 Development
University of Bologna
 
FOOD: FOod in Open Data
FOOD: FOod in Open DataFOOD: FOod in Open Data
FOOD: FOod in Open Data
University of Bologna
 
Freedom for bibliographic references: OpenCitations arise
Freedom for bibliographic references: OpenCitations ariseFreedom for bibliographic references: OpenCitations arise
Freedom for bibliographic references: OpenCitations arise
University 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 workflows
University 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 experiment
University 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 citations
University 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 approach
University of Bologna
 
Dealing with Markup Semantics
Dealing with Markup SemanticsDealing with Markup Semantics
Dealing with Markup Semantics
University of Bologna
 
Handling Markup Overlaps Using OWL
Handling Markup Overlaps Using OWLHandling Markup Overlaps Using OWL
Handling Markup Overlaps Using OWL
University of Bologna
 

More from 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
 

Recently uploaded

Mariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceXMariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceX
Mariano Tinti
 
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
Edge AI and Vision Alliance
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
tolgahangng
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
panagenda
 
How to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptxHow to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptx
danishmna97
 
“I’m still / I’m still / Chaining from the Block”
“I’m still / I’m still / Chaining from the Block”“I’m still / I’m still / Chaining from the Block”
“I’m still / I’m still / Chaining from the Block”
Claudio Di Ciccio
 
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
名前 です男
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
Neo4j
 
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdfUnlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Malak Abu Hammad
 
UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5
DianaGray10
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
SOFTTECHHUB
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
Pixlogix Infotech
 
GenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizationsGenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizations
kumardaparthi1024
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Paige Cruz
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
Uni Systems S.M.S.A.
 
Full-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalizationFull-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalization
Zilliz
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
Kumud Singh
 
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
Neo4j
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
Zilliz
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
shyamraj55
 

Recently uploaded (20)

Mariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceXMariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceX
 
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
 
How to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptxHow to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptx
 
“I’m still / I’m still / Chaining from the Block”
“I’m still / I’m still / Chaining from the Block”“I’m still / I’m still / Chaining from the Block”
“I’m still / I’m still / Chaining from the Block”
 
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
 
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdfUnlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
 
UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
 
GenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizationsGenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizations
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
 
Full-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalizationFull-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalization
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
 
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
 

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