<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>Semantic Annotation of Texts with RDF Graph Contexts</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>H. Cherfi</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>O. Corby</string-name>
          <email>Olivier.Corby@sophia.inria.fr</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>C. Faron-Zucker</string-name>
          <email>Catherine.Faron-Zucker@unice.fr</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>K. Khelif</string-name>
          <email>Khaled.Khelif@sophia.inria.fr</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>M.T. Nguyen</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>I3S, Universit ́e de Nice Sophia Antipolis</institution>
          ,
          <addr-line>CNRS 930 route des Colles - BP 145 FR-06903 Sophia Antipolis cedex</addr-line>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>INRIA Sophia Antipolis - M ́editerran ́ee 2004 route des Lucioles - BP 93 FR-06902 Sophia Antipolis cedex</institution>
        </aff>
      </contrib-group>
      <abstract>
        <p>The basic principle of the Semantic Web carried by the RDF data model is that many RDF statements coexist all together and are universally true. However, some case studies imply contextual relevancy and truth - this is well known in the Conceptual Graph community and handled through the notion of contexts. In this paper, we present an approach and a tool for semantic annotation of textual data using graph contexts. We rely on both Natural Language Processing and Semantic Web technologies and propose a model of RDF contexts inspired by the nested Conceptual Graphs. Sentences are primarily analysed and their grammatical constituents (subject, verb, object) are extracted and mapped to RDF triples. Links between these triples are then established within a semantic scope (i.e., context). The context definition allows us to validate the generated annotations by disambiguating the misleading RDF triples. We show how far our approach is applicable to texts in Engineering Design.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        The semantic annotation of texts consists in extracting semantic relations
between domain relevant terms in texts. Several studies address the problem of
capturing complex relations from texts - more complex relations than subsumption
relations between terms identified as domain concepts. They combine statistical
and linguistic analyses. The main applications are in the biomedical domain [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]
by relating genes, proteins, and diseases. Basically, these approaches consist of
the detection of new relations between domain terms; whereas in the
semantic annotation generation, we aim to identify existing relations, belonging to
the domain ontology, within instances in texts and to complete them with the
description of the domain concepts related by these identified relations.
      </p>
      <p>
        The core issue of the methodology we propose stands in the mapping between
grammatical elements of each sentence in the analysed text and the
corresponding entities in the dedicated-domain ontology. We base upon the MeatAnnot
approach previously designed to support text mining and information retrieval
in the biological domain [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. It consists of: (i) the detection of relations described
in a biomedical ontology, (ii) the detection of terms linked by the identified
relations based on term linguistic roles (subject, object, etc.) in the sentence, and
(iii) the generation of a corresponding annotation of the analysed biomedical
text. We generalize this approach (a) by handling any domain ontology
associated to the text to analyse: we do not restrict to the biomedical ontology and
rather propose a domain independent approach; (b) by distinguishing between
the ontological level and the instance level when linking a term in the text to
the ontology: a term is identified to an instance of a concept rather than to
the concept itself; (c) by enriching the extracted instances of conceptual
relations with contextual knowledge. We rely upon the Corese3 semantic search
engine [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] which implements the RDF [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] graph-based knowledge representation
language and the SPARQL query language [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. Moreover, Corese was extended to
handle RDF contextual metadata, hereafter called contexts.
      </p>
      <p>
        SPARQL is provided with query patterns on named graphs enabling to choose
the RDF dataset against which a query is executed. This is a first step to handle
contextual metadata. A named graph can be used to limit the scope of an RDF
statement to the context in which it is relevant to query it. Furthermore, by
naming contextualized RDF graphs, they can be themselves associated with RDF
metadata, enabling querying on several “levels” of (meta-)annotations. This is
close to the notion of nested graphs in the Conceptual Graphs model [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. We
base upon a feature proposed in [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] to declare RDF sources and we use it to
handle named RDF graphs representing different contexts. Corese is provided
with two RDF/SPARQL design patterns and SPARQL extensions to represent and
query contexts. A first pattern is dedicated to the handling of a hierarchical
organization of RDF graphs which can represent inclusions of contexts [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. The
second pattern is described in this paper and addresses the problem of querying
for the contextual relations holding between recursively nested contexts. We
take advantage of these Corese features to make explicit the rhetorical relations
contained in texts and represent them in the semantic annotations as relations
between RDF graph contexts. The methodology we present is implemented and
applied to the Engineering Design domain within the framework of the European
project SevenPro [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ].
      </p>
      <p>This paper is organised as follows. We give in section 2 the Natural Language
Processing (NLP) technique we use to annotate a given text with RDF triples by
relating terms occurring in the text. We introduce in section 3 the Corese
design pattern we use to represent and handle nested contexts. We show how we
use it to enrich our primary text annotations. We explain how these
contextualized annotations provide further information retrieval capabilities when applied
to Engineering Design domain. Related work is discussed in section 4. Finally,
concluding remarks are provided in section 5.
3 http://www.inria.fr/acacia/soft/corese</p>
    </sec>
    <sec id="sec-2">
      <title>NLP-Driven Semantic Annotation of Texts</title>
      <p>
        Extraction of relations from texts We use the RASP [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ] parser for English
texts in order to extract NLP relations (i.e., verb) and their arguments (i.e.,
subject, object). The RASP parser is in charge of assigning a grammatical category
to each word by constructing a syntactical tree of each sentence of the text. For
example, let us consider the following simple sentence S as our running example
throughout this paper:
      </p>
      <p>S: The L1 luggage compartment contains 100cc.</p>
      <p>Hence, we give a simplified RASP syntax tree in Table 1. The sentence S consists
of: (1) noun phrase NP, on the left branch of the syntactical tree, which represent
the subject subj: determiner and two modifiers; and (2) verbal phrase VP, on
the right hand side, constituted of the main verb and the direct object dobj.
pppppppppppp8 S hPPPPPPPPPPPPPP
NP((det + mod) +mmmmomdm)mmmmmmm6</p>
      <p>The L1</p>
      <p>O hQQQQQQQQQQQQ</p>
      <sec id="sec-2-1">
        <title>NP (subj)</title>
        <p>]&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;
luggage compartment</p>
      </sec>
      <sec id="sec-2-2">
        <title>VP (verb + dobj)</title>
        <p>O ^&lt;&lt;&lt;</p>
        <p>&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;
contain + s 100cc
Mapping of grammatical constituents to RDF triples Let us show on
the running example the correspondence between a sentence and its translation
to an RDF graph triple. Provided that the domain ontology conveys the
following knowledge (as it is the case of the ontology we have built for the SevenPro
project): a Luggage compartment is part of a Car; a Luggage compartment
is related to a Capacity; property contain has for rdfs:domain Car parts
(i.e., Luggage compartment, Door, etc.); property contain has for rdfs:range
a Capacity unit. We can state that the triple L1, contain, 100cc is a valid
instance of property contain and we add it to the text annotation set. The
RDF/XML syntax of this statement is given in Table 2 (the spro namespace
identifies the SevenPro ontology).</p>
        <p>From simple- to complex-sentence semantic annotation We showed
above how we generate RDF annotations for simple sentences with
grammatical patterns subject, verb, object, hereafter called S − V − O (some possible
ambiguity conveyed by the textual material put aside). Here we discuss the
handling of more complex sentences and the annotations which we generate. In
addition to the S − V − O (sentence in active form) and O − V − S (sentence in
passive form) grammatical patterns, we correctly parse and annotate sentences
with subordinate phrases when these phrases are “independent” from the main
sentence.</p>
        <p>However, for other complex sentences, the semantics of the connection
between the subordinate and the main sentence is not so simple and cannot be
captured in RDF –which is limited to the representation of conjunctive knowledge.
It is, for instance, the case of disjunctive sentences where alternative statements
co-exist in implicit different contexts. It is also the case when rhetorical relations
play a key role in the sentences to be annotated, like the following one including
a conditional premise: “If the car C3 has part door D4, then the 100cc are
contained in the L1 luggage compartment.”, or this other one containing a causal
premise: “The L1 luggage compartment capacity contains 100cc because the car
C3 has part door D4.”. In some applications, it constitutes a major problem and
may lead to a deadlock issue when querying the RDF graph with SPARQL. Hence,
we define the so-called RDF graph context, with recursive capability, in order to
tackle the current expressiveness capability lack.
3</p>
        <p>Extension of SPARQL to Handle Contextual Relations
and Nested Contexts
3.1</p>
        <sec id="sec-2-2-1">
          <title>RDF graph context definition</title>
          <p>
            The SPARQL query language [
            <xref ref-type="bibr" rid="ref5">5</xref>
            ] offers capabilities for querying by graph patterns.
The retrieval of solutions (i.e., RDF triple sets) is based on graph pattern
matching, close to Conceptual graphs (CG) projection. A SPARQL query is executed
against an RDF dataset which represents a collection of graphs. The SPARQL
keyword GRAPH is used as primitive to match patterns against named graphs in the
query of the RDF dataset, as shown hereafter:
          </p>
        </sec>
      </sec>
      <sec id="sec-2-3">
        <title>1. SELECT * WHERE { 2. GRAPH ?s1 {?x c:prop ?y} 3. }</title>
        <p>
          In line 2 of this example, we can state that the pattern graph ?s1 {?x c :
prop ?y} is named as graph ?s1. It can provide a URI to select one graph or
use a variable which will range over the URIs of named graphs in the dataset. A
complementary feature is proposed in [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ] and implemented in Corese to declare
RDF sources. For instance, We can define the source of the graph, as in line
1 below cos : graph = ”http : //www.sevenpro.org/car/ctx1”, for the following
RDF triples corresponding to the sentence with subordinate: “The L1 luggage
compartment, that contains 100cc, is separated from tailgate T2.”. This graph
source is used as the context ctx1 for these triples within SevenPro car domain.
1. cos:graph="http://www.sevenpro.org/car/ctx1"
2. {
        </p>
      </sec>
      <sec id="sec-2-4">
        <title>3. spro:#T2 spro:separate spro:#L1</title>
      </sec>
      <sec id="sec-2-5">
        <title>4. spro:#L1 spro:contain spro:#100cc 5. }</title>
        <p>In RDF/XML syntax, the first triple in line 3 above can be written extensively as:
&lt;spro:Tailgate rdf:about="#T2" cos:graph="http://www.sevenpro.org/car/ctx1" &gt;
&lt;spro:separate&gt;</p>
        <p>&lt;spro:Luggage_compartment rdf:about="#L1"&gt;
&lt;/spro:separate&gt;
&lt;/spro:Tailgate&gt;</p>
        <p>We use the SPARQL GRAPH primitive to handle RDF named graphs
representing different contexts within which alternative metadata can be described.
Furtehrmore, we provide an extension of SPARQL to query for contextual
relations holding between recursively nested contexts. Once contextual knowledge is
represented into RDF named graphs identified by URIs and queried with GRAPH
query patterns, these graphs can themselves be described into other separate
named graphs. This process of meta-annotating named graphs identifying
contexts leads to a recursive nesting of contexts –contexts nested one into another.
This is of prime interest for use cases where context graphs are annotated with
rhetorical or temporal relations. The unstacking of contexts should make explicit
the progress in which nested graphs are involved.</p>
        <p>We propose an extension of SPARQL with a REC GRAPH keyword whose
grammar rule is similar to the standard SPARQL GRAPH one. The following query
enables to retrieve the triples from nested graphs related to a given contextual
relation c_Rel. Moreover, all sub-properties of c_Rel –following rdfs:subPropertyOf
subsumption relations having c_Rel as value in the RDFS ontology– are matched
with the SPARQL query.</p>
      </sec>
      <sec id="sec-2-6">
        <title>SELECT * WHERE {</title>
      </sec>
      <sec id="sec-2-7">
        <title>REC GRAPH ?s {?gr1 c_Rel ?gr2} . }</title>
        <p>
          In addition, when the property is not specified, e.g., a variable ?p replacing
c_Rel, Corese retrieves the RDF triples having any property (cf. details in [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ]).
3.2
        </p>
        <sec id="sec-2-7-1">
          <title>Application example to Engineering design domain</title>
          <p>We have used Corese Graph context capabilities within Sevenpro textual corpus
in Engineering Design and the subsequent spro ontology. We show the practical
use of the contexts for giving additional metadata with a sentence of the form:
If [C1] then [C2], unless [C3]. Then, we show how to improve the SPARQL
triple set results with corresponding context-augmented SPARQL queries. We
comment the RDF graph context representation, we justify the SPARQL queries,
followed by a presentation of the possible RDF triple results. Moreover, in the
sentence depicted in Table 3, we show the use of nested contexts. In the second
column of Table 3, we describe the corresponding RDF triples for the sentence
augmented with RDF graph contexts g1 to g3. The third column describes how these
graphs are defined as URI resources (with rdf:Description syntax) and nested
within nesting graphs c1 and c2 through the domain relations spro:then and
spro:unless. In so doing, we are able to query, with context-augmented SPARQL
language using the keyword REC GRAPH. Then, Corese matches the triples in the
RDF graph corresponding to triples matching the contextual relations spro:then
and spro:unless. We extensively obtain the triples shown in column three of
Table 3, (lines 3 to 5 in the result part), alongside with the contextual relations
spro:then and spro:unless (first two lines in the result part). We show the
context-augmented triple results compared to the mere results which we query
with standard SPARQL without contexts.</p>
          <p>The named graphs in the sentence of Table 3 are nested as it is shown in
Fig. 1. They are organised in the hierarchy of contexts: [c1] : [g1]then[g2];
[c2] : [c1]unless[g3]. Hence, we can relate the RDF triple “a p b” to “c q d”
by traversing the hierarchy of Fig. 1. In so doing, the semantics of the example
sentence is fully captured with annotation capability of nested graph contexts.
g1
a p b
then
c1</p>
          <p>unless
g2
c q d
c2
g3
The mechanism introduced by RDF graph contexts is powerful enough to
represent a variety of NL expressions. First, with the RDF context expressiveness,
we can represent the logical disjunction or, the negation not as RDF graph
contexts. Moreover, we can describe the modal primitives can, may, as in: The
headliner may be projected beyond the vertical of the external surface. There are
a number of other relations which we can model: temporal (i.e., after,
meanwhile, etc), spatial (i.e., below, behind, etc.), comparative (i.e., more... than,
etc.). Presently, we fail to model the correct annotations of sentences having
an ambiguous subject/object constituents. Moreover, a variant in the
example sentence raises the still-open problem of anaphora resolution in NLP. The
inlet headliner H1 should be lifted by metal bar B2 [. . . ] unless it is in position
P5; where the pronoun it represents H1.</p>
          <p>
            In the Semantic Web domain, the work of [
            <xref ref-type="bibr" rid="ref12">12</xref>
            ] addresses the problem of
provenance and trust on the web and proposes an extension of RDF to handle
RDF graphs named by URIs, enabling RDF statements describing RDF graphs. The
notion of context is used in [
            <xref ref-type="bibr" rid="ref13">13</xref>
            ] to separate statements that refer to different
contextual information. They describe a practical solution to explicitly tie
contextual information to RDF statements. They identify SPARQL as the query
language satisfying their requirements with its patterns on named graphs, however
they do not propose any extension of RDF or SPARQL representation paradigms.
5
          </p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Conclusion and Future Work</title>
      <p>The objective of this paper is twofold: (i) to show how we generate accurate RDF
triples from texts using NLP techniques, and (ii) to augment the semantic
annotation generation with RDF graph context metadata in order to catch the semantics
of the analysed texts, and consequently to enhance the retrieval capabilities.
Linguistic analysis is used to suggest appropriate annotations to the text. The text
analysis process strongly depends on the background knowledge (i.e. ontologies,
terminology, etc.) of the analysed domain. The more precise ontologies and
related terminology - list of domain terms, e.g. car manufacturer names, etc. -,
the more significant the extracted annotations are. We have started to generate
RDF annotation triples from simple (S − V − O) sentences. Then, a number of
features were designed to generate more complex annotations, e.g., sentences
containing subordinate phrases. Based upon the context graph capability, we
have shown new capabilities of high usefulness in the query of the graph by
using named graphs and nested contexts. The RDF graph context paradigm can be
used recursively. Hence, the text annotation allows us to produce the accurate
corresponding semantic annotation. Finally, our approach is domain
independent. The analysis process remain the same provided that ontologies have been
adapted according to the text domain.</p>
      <p>
        In the future, we aim at developing more complex sentence analysis
following the rhetorical relations studied in RST [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ] based on the RDF graph context
expressiveness. In so doing, a more precise evaluation can be conducted.
      </p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Staab</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Mining information for functional genomics</article-title>
          .
          <source>IEEE Intelligent Systems and their Applications</source>
          <volume>7</volume>
          (March-April
          <year>2002</year>
          )
          <fpage>66</fpage>
          -
          <lpage>80</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Khelif</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dieng-Kuntz</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Barbry</surname>
            ,
            <given-names>P.:</given-names>
          </string-name>
          <article-title>An ontology-based approach to support text mining and information retrieval in the biological domain</article-title>
          .
          <source>Journal of Universal Computer Science (JUCS)</source>
          <volume>13</volume>
          (
          <issue>12</issue>
          ) (
          <year>2007</year>
          )
          <fpage>1881</fpage>
          -
          <lpage>1907</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Corby</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dieng-Kuntz</surname>
            , R.,
            <given-names>C.</given-names>
          </string-name>
          <article-title>Faron-Zucker: Querying the semantic web with the corese search engine</article-title>
          .
          <source>In: In Proc. of the 16th Eur. Conf. on Artificial Intelligence ECAI'04/PAIS'04</source>
          ,
          <string-name>
            <surname>Valencia</surname>
          </string-name>
          , Spain, IOS Press (
          <year>2004</year>
          )
          <fpage>705</fpage>
          -
          <lpage>709</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Manola</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Miller</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>McBride</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          :
          <article-title>rdf primer</article-title>
          .
          <source>Technical report, W3C Recommendation</source>
          (
          <year>2004</year>
          )
          <article-title>w3</article-title>
          .org/TR/2004/REC-rdf-primer-
          <volume>20040210</volume>
          /.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Prud'hommeaux</surname>
          </string-name>
          , E.,
          <string-name>
            <surname>Seaborne</surname>
          </string-name>
          , A.:
          <article-title>sparql query language for rdf</article-title>
          .
          <source>Technical report, W3C Recommendation</source>
          (
          <year>2008</year>
          )
          <article-title>www</article-title>
          .w3.org/TR/rdf-sparlq-query/.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Chein</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mugnier</surname>
            ,
            <given-names>M.L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Simonet</surname>
          </string-name>
          , G.:
          <article-title>Nested Graphs: A Graph-based Knowledge Representation Model with FOL Semantics</article-title>
          .
          <source>In: Proc. of the 6th Int'l Conf. on Principles of Knowledge Representation and Reasoning (KR'98)</source>
          , Trento, Italy, Morgan Kaufmann Publishers (
          <year>June 1998</year>
          )
          <fpage>524</fpage>
          -
          <lpage>534</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Gandon</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bottollier</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Corby</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Durville</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>RDF/XML Source Declaration</article-title>
          .
          <source>In: Proc. of IADIS WWW/Internet</source>
          , Vila Real,
          <string-name>
            <surname>Portugal</surname>
          </string-name>
          (
          <year>2007</year>
          )
          <article-title>5 pages</article-title>
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Corby</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Faron-Zucker</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <article-title>Implementation of SPARQL Query Language based on Graph Homomorphism</article-title>
          .
          <source>In: Proc. of the 15th Int'l Conf. on Conceptual Structures (ICCS'07)</source>
          , Sheffield,
          <string-name>
            <surname>UK</surname>
          </string-name>
          , IEEE Computer Science Press (
          <year>July 2007</year>
          )
          <fpage>472</fpage>
          -
          <lpage>475</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9. SevenPro:
          <article-title>Semantic virtual engineering environment for product design European Special Targeted Research Project: FP6-027473, www</article-title>
          .sevenpro.org.
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Watson</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Carroll</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Briscoe</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>Efficient extraction of grammatical relations</article-title>
          .
          <source>In: Proc.of the Ninth International Workshop on Parsing Technologies (IWPT)</source>
          , Vancouver, Association for Computational Linguistics (
          <year>October 2005</year>
          )
          <fpage>160</fpage>
          -
          <lpage>170</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Corby</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          :
          <string-name>
            <surname>Web</surname>
          </string-name>
          , Graphs &amp; Semantics. In
          <source>: Proc. of the 16th In'l Conf. on Conceptual Structures (ICCS)</source>
          ,
          <source>Toulouse (July</source>
          <year>2008</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Carroll</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bizer</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hayes</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stickler</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          : Named Graphs,
          <article-title>Provenance and Trust</article-title>
          .
          <source>In: Proc. of the 14th WWW Conf</source>
          . Volume
          <volume>14</volume>
          ., Chiba, Japan (
          <year>2005</year>
          )
          <fpage>613</fpage>
          -
          <lpage>622</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Stoermer</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Palmisano</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Redavid</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Iannone</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bouquet</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Semeraro</surname>
          </string-name>
          , G.:
          <article-title>rdf and Contexts: Use of sparql and Named Graphs to Achieve Contextualization</article-title>
          .
          <source>In: Proc. of the 1st Jena User Conference</source>
          , Bristol, UK (
          <year>2006</year>
          )
          <fpage>613</fpage>
          -
          <lpage>622</lpage>
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Mann</surname>
            ,
            <given-names>W.C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Matthiessen</surname>
            ,
            <given-names>C.M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Thompson</surname>
            ,
            <given-names>S.A.</given-names>
          </string-name>
          :
          <article-title>Rhetorical Structure Theory and text analysis</article-title>
          . In: Discourse Description:
          <article-title>Diverse Linguistic Analyses of a Fund-Raising Text</article-title>
          . John Benjamins (
          <year>1992</year>
          )
          <fpage>39</fpage>
          -
          <lpage>78</lpage>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>