:Tomb → :Quote - rug-compling/noordergraf GitHub Wiki

Klassehiërarchie

  • Class
    • :textxsd:string
    • :commentxsd:string
    • Tomb
      • :quote:Quote
    • Quote
      • :reference:Reference
    • Reference
      • :authorxsd:string
      • :fullQuotexsd:string
      • :titlexsd:string
      • :date:Date
      • :source → IRI
      • BibleReference
        • :part:BiblePart
        • :chapterxsd:integer
        • :versexsd:string
        • :scripture → bijvoorbeeld <https://www.bible.com/nl/bible/75/ACT.8.37.HTB>
      • MusicReference
        • :albumTitlexsd:string
        • :albumTrackxsd:integer
        • :discogs → IRI
      • BookReference
        • :isbn → IRI
      • MovieReference
        • :imdb → IRI
      • SpeechReference

Voorbeelden

Tekst zonder reference

:quote [
  a :Quote ;
  :text "Rust in vrede"@nld
] .

Tekst met generieke reference

:quote [
  a :Quote ;
  :text "God dobbelt niet"@nld ;
  :reference [
    a :Reference ;
    :author "Albert Einstein" ;
    :fullQuote "Die Quantenmechanik ist sehr achtunggebietend. Aber eine innere Stimme sagt mir, daß das noch nicht der wahre Jakob ist. Die Theorie liefert viel, aber dem Geheimnis des Alten bringt sie uns kaum näher. Jedenfalls bin ich überzeugt, daß *der* nicht würfelt."@deu
  ]
] .

(Het is een citaat uit een brief, dus misschien zou je hier :LetterReference moeten gebruiken, met ook velden voor datum en voor de naam van de geadresseerde.)

Een bijbelcitaat

:quote [
  a :Quote ;
  :text "wij geloven dat Jezus Christus de Zoon van God is"@nld ;
  :reference [
    a :BibleReference ;
    :part :Acts_of_the_Apostles.n.01 ;
    :chapter 8 ;
    :verse "37" ;
    :scripture <https://www.bible.com/bible/75/ACT.8.37>
  ]
] .

https://www.bible.com/bible/75/ACT.8.37

voorbeeld

Een verwijzing naar een tekst in de bijbel

:quote [
  a :Quote ;
  :text "psalm 27"@nld ;
  :reference [
    a :BibleReference ;
    :part :Psalm.n.01 ;
    :chapter 27 ;
    :scripture <https://www.bible.com/bible/75/PSA.27>
  ]
] .

https://www.bible.com/bible/75/PSA.27

Een bijbelcitaat met verwijzing

:quote [
  a :Quote ;
  :text """Want het leven is mij Christus en het sterven is mij gewin.
philip. 1:21""" ;
  :reference [
    a :BibleReference ;
    :chapter 1 ;
    :verse "21" ;
    :part :Epistle_to_the_Philippians.n.01 ;
    :scripture <https://www.bible.com/bible/75/PHP.1.21>
  ] ;
] .

of zo:

:quote [
  a :Quote ;
  :text "Want het leven is mij Christus en het sterven is mij gewin." ;
  :text "philip. 1:21" ;
  :reference [
    a :BibleReference ;
    :chapter 1 ;
    :verse "21" ;
    :part :Epistle_to_the_Philippians.n.01;
    :scripture <https://www.bible.com/bible/75/PHP.1.21>
  ] ;
] .

https://www.bible.com/bible/75/PHP.1.21

voorbeeld

Een tekst uit een lied

@prefix discogs: <https://www.discogs.com/release/> .

:quote [
  a :Quote ;
  :text """t Het nog nooit, nog nooit zo donker west,
of t wer altied wel weer licht."""@gos ;
  :reference [
    a :MusicReference ;
    :author "Ede Staal" ;
    :title "t Het nog nooit zo donker west"@gos ;
    :albumTitle "Mien toentje"@gos ;
    :albumTrack "A2" ;
    :date "1984"^^xsd:gYear ;
    :discogs discogs:850334 ;
    :source <https://open.spotify.com/track/4LT5hf3slQFGjXkXeG2wE7>
  ]
] .

discogs:850334

https://open.spotify.com/track/4LT5hf3slQFGjXkXeG2wE7

Een tekst uit een boek

@prefix isbn: <https://openlibrary.org/search?isbn=> .

:quote [
  a :Quote ;
  :text "Don't Panic"@eng ;
  :reference [
    a :BookReference ;
    :author "Douglas Adams" ;
    :title "The Hitchhiker's Guide to the Galaxy"@eng ;
    :date "1979"^^xsd:gYear ;
    :isbn isbn:0330258648 ;
    :comment "motto"
  ]
] .

isbn:0330258648

Citaat uit een film

@prefix imdb: <https://www.imdb.com/title/> .

:quote [
  a :Quote ;
  :text "I'll be back"@eng ;
  :reference [
    a :MovieReference ;
    :title "The Terminator"@eng ;
    :author "James Cameron" ;
    :date "1984"^^xsd:gYear ;
    :imdb imdb:tt0088247 ;
    :comment "gesproken door Arnold Schwarzenegger als de Terminator"@nld
  ]
] .

imdb:tt0088247

Citaat uit een toespraak

:quote [
  a :Quote ;
  :text "We shall never surrender"@eng ;
  :reference [
    a :SpeechReference ;
    :author "Winston Churchill" ;
    :title "We shall fight on the beaches" ;
    :date "1940-06-04"^^xsd:date ;
    :source wikipedia:We_shall_fight_on_the_beaches
  ]
]

wikipedia:We_shall_fight_on_the_beaches