:Tomb → :Quote - rug-compling/noordergraf GitHub Wiki
Klassehiërarchie
- Class
- :text →
xsd:string
- :comment →
xsd:string
- Tomb
- :quote →
:Quote
- :quote →
- Quote
- :reference →
:Reference
- :reference →
- Reference
- :author →
xsd:string
- :fullQuote →
xsd:string
- :title →
xsd:string
- :date →
:Date
- :source → IRI
- BibleReference
- :part →
:BiblePart
- :chapter →
xsd:integer
- :verse →
xsd:string
- :scripture → bijvoorbeeld
<https://www.bible.com/nl/bible/75/ACT.8.37.HTB>
- :part →
- MusicReference
- :albumTitle →
xsd:string
- :albumTrack →
xsd:integer
- :discogs → IRI
- :albumTitle →
- BookReference
- :isbn → IRI
- MovieReference
- :imdb → IRI
- SpeechReference
- :author →
- :text →
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
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
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>
]
] .
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"
]
] .
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
]
] .
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
]
]