4

CiTO(Citation Typing Ontology)は、科学研究論文やその他の学術研究における参照引用の性質を、他のそのような出版物とWeb情報リソースの両方に記述し、これらの記述をセマンティックWebに公開するためのオントロジーです。この論文では(オープンアクセス)

この論文はオントロジーで利用可能な用語を説明する優れた仕事をしていますが、私はXML、HTML、およびRDFの初歩的な知識しか持っておらず、これをWebページに実装する方法が少しわかりません。

私がオンラインでブログ投稿を書いていると想像してみてください。これは、私が書いたばかりの行がそれに続く引用に反論していることを示しています。私はただ書くでしょうか:

... refutes the analysis of <a rel="cito:refutes" href="http://dx.doi/org/10.1126/science.1197258">Wolfe et al. 2010</a>.

または、CiTOの名前空間をどこかに指定する必要がありますか?

たとえば、ページをXMLとしてフォーマットする必要がありますか?

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<html xmlns="http://purl.org/net/cito/">

<html xmlns="http://purl.org/net/cito/">は名前空間を追加する正しい方法ですか?

リンクを作成する際に、同じ論文に提供できるURLがたくさんあることは明らかです。これらを選択する方法に関するベストプラクティス、またはdoiを明示的に渡すために設定できる追加の属性はありますか?または、citoデータが埋め込まれているURLを指す必要がありますか?これは、htmlアンカーでの「rev」タグの使用とどのように関連していますrevか。タグにcitoリンクを追加するときはいつでもありますか?

これを行った後、CiTOの意味を持つ引用を含むRDFファイルを生成するための明白なプログラムによる方法はありますか?

4

1 に答える 1

2

relタグではなくRDFa 属性を使用revすることが、これを行う最も効果的な方法である ように見えます。

次の解決策は、DOCTYPE、mime-type を追加し、リンクのrel属性を RDFaproperty属性に変更し、リンクの属性を に変更した後、schoollyhtml.org から適応されresourceますhref。その後、W3C HTML5 nuバリデーターで正常に検証されます。

<!DOCTYPE html>
<html lang="en" property="http://scholarly-html.org/schtml" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta charset="utf-8">
<title> Scholarly HTML </title>
</head>
<body>

    <span property="http://purl.org/dc/terms/title">Title</span>
    <span property="http://purl.org/dc/terms/creator">Author</span>

    <p>Some text which then refers to a cited work
          <a   property="http://purl.org/spar/cito/obtainsBackgroundFrom"  href="http://dx.doi.org/10.1039/B411699M">[citation]</a>
          but it would still be valid if the citation had been formatted and something along the
          lines of
          <a   property="http://purl.org/spar/cito/obtainsBackgroundFrom" href="http://dx.doi.org/10.1039/B411699M">Adams, 2007</a> is also
          allowable.
    </p>
    <p>References can also involve explicitly declaring the elements of the reference entry.
          So the following is also allowable.
          <a property="http://purl.org/spar/cito/parodies" href="#citation">[citation]</a> In this case the information needs to be
          provided elsewhere in the document, possibly in a separate div for the reference list
          entries such as below.
    </p>

<div id="biblography" property="http://purl.org/spar/biro/ReferenceList">
  <span id="citation" property="http://purl.org/spar/biro/BibliographicRecord" about="http://dx.doi.org/10.1039/B411699M">
    <span property="http://purl.org/dc/terms/title">
      Experimental data checker: better information for organic chemists</span>
    <span property="http://purl.org/dc/terms/creator">
        <span resource="http://people.cam.ac.uk/sea36">
            <span property="http://xmlns.com/foaf/spec/name" content="Samuel E. Adams">S. E. Adams</span>
        </span>,
        <span resource="http://people.cam.ac.uk/jmg">
            <span property="http://xmlns.com/foaf/spec/name">J. M. Goodman</span>
        </span>,
    </span>
    <span property="http://purl.org/dc/terms/isPartOf" resource="[http://purl.org/dc/terms/journal]">
        <span property="http://purl.org/dc/terms/title" content="Organic &amp; Biomolecular Chemistry">
        </span>
        <span property="http://purl.org/ontology/bibo/shortTitle">Org. Biomol. Chem.</span>
    </span>
    <span property="http://purl.org/dc/terms/date">2004</span>,
    <span property="http://purl.org/ontology/bibo/volume">2</span>
    (<span property="http://purl.org/ontology/bibo/issue">21</span>),
    <span property="http://purl.org/ontology/bibo/pageStart">3067</span>-
    <span property="http://purl.org/ontology/bibo/pageEnd">3070</span>            <br/>
        DOI: <a href="http://dx.doi.org/10.1039/B411699M" property="http://purl.org/ontology/bibo/doi">10.1039/B411699M</a>
  </span>
</div>
</body>
</html>

これをどのように改善できるか、また、代わりにマイクロデータに実装できるかどうかについての推奨事項を聞きたいです。

于 2012-10-16T16:59:52.437 に答える