Skip to content

Instantly share code, notes, and snippets.

@ujnak
Last active December 8, 2021 02:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ujnak/7c6d56fdb184652916aa91f90ef69447 to your computer and use it in GitHub Desktop.
Save ujnak/7c6d56fdb184652916aa91f90ef69447 to your computer and use it in GitHub Desktop.
雑誌記事の情報
PREFIX nature: <http://nature.example.com/>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX dcterms: <http://purl.org/dc/terms/>
INSERT DATA {
# article1 has the title "All about XYZ".
# article1 was created (written) by Jane Smith.
# article1 references (refers to) article2 and article3
nature:article1 dc:title "All about XYZ" ;
dc:creator "Jane Smith" ;
dcterms:references nature:article2,
nature:article3 .
# article2 has the title "A review of ABC".
# article2 was created (written) by Joe Bloggs.
# article2 references (refers to) article3.
nature:article2 dc:title "A Review of ABC" ;
dc:creator "Joe Bloggs" ;
dcterms:references nature:article3 .
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment