-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bbb170b
commit 019f49e
Showing
9 changed files
with
103 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,34 @@ | ||
// this is an example. Check https://typst.app/universe/package/glossarium | ||
|
||
#let glossary = ( | ||
// minimal term | ||
(key: "kuleuven", short: "KU Leuven"), | ||
// a term with a long form | ||
(key: "unamur", short: "UNamur", long: "Université de Namur"), | ||
// no long form here | ||
(key: "kdecom", short: "KDE Community", desc:"An international team developing and distributing Open Source software."), | ||
// a full term with description containing markup | ||
( | ||
key: "oidc", | ||
short: "OIDC", | ||
long: "OpenID Connect", | ||
desc: [OpenID is an open standard and decentralized authentication protocol promoted by the non-profit | ||
#link("https://en.wikipedia.org/wiki/OpenID#OpenID_Foundation")[OpenID Foundation].]), | ||
(key: "sgv", short: "SGV", long: "Storage Guidance Vocabulary"), | ||
(key: "shex", short: "ShEx"), | ||
(key: "shacl", short: "SHACL"), | ||
(key: "sgv", short: "SGV", long: "Storage Guidance Vocabulary", desc: [ | ||
The vocabulary introduced in this document in order to explicetly dezscribe the structure of a Solid pod. | ||
]), | ||
(key: "shex", short: "ShEx", desc: [ | ||
ShEx~@bib:shex is a communty created shape description language. | ||
]), | ||
(key: "shacl", short: "SHACL", desc: [ | ||
SHACL~@bib:shacl is a W3C Recomendation shape description language. | ||
]), | ||
(key: "http", short: "HTTP", long: "Hypertext Transfer Protocol"), | ||
(key: "rdf", short: "RDF", long: "Resource Description Framework"), | ||
(key: "ldp", short: "LDP", long: "Linked Data Platform"), | ||
(key: "rdf", short: "RDF", long: "Resource Description Framework", desc: [@bib:rdf]), | ||
(key: "ldp", short: "LDP", long: "Linked Data Platform", desc: [@bib:ldp]), | ||
(key: "uri", short: "URI"), | ||
(key: "sparql", short: "SPARQL"), | ||
(key: "ldes", short: "LDES", long: "Linked Data Event Streams"), | ||
(key: "sparql", short: "SPARQL", descr: [@bib:sparql]), | ||
(key: "ldes", short: "LDES", long: "Linked Data Event Streams", desc: [@bib:ldes]), | ||
(key: "api", short: "API", long: "Application Programming Interface"), | ||
(key: "gdpr", short: "GDPR", long: "General Data Protection Regulation"), | ||
(key: "ccpa", short: "CCPA", long: "California Consumer Privacy Act"), | ||
(key: "void", short: "VoID", long: "Vocabulary of Interlinked Datasets"), | ||
(key: "tree", short: "TREE"), | ||
(key: "void", short: "VoID", long: "Vocabulary of Interlinked Datasets", desc: [@bib:void]), | ||
(key: "tree", short: "TREE", desc: [@bib:tree]), | ||
(key: "w3c", short: "W3C", long: "World Wide Web Consortium"), | ||
(key: "tpf", short: "TPF", long: "Triple Patter Fragments"), | ||
(key: "cbd", short: "CBD", long: "Concise Bounded Description"), | ||
(key: "wac", short: "WAC", long: "Web Access Control"), | ||
(key: "acp", short: "ACP", long: "Access Control Policy"), | ||
(key: "tpf", short: "TPF", long: "Triple Patter Fragments", desc: [@bib:tpf]), | ||
(key: "cbd", short: "CBD", long: "Concise Bounded Description", desc: [@bib:concise-bounded-description]), | ||
(key: "wac", short: "WAC", long: "Web Access Control", desc: [@bib:wac]), | ||
(key: "acp", short: "ACP", long: "Access Control Policy", desc: [@bib:acp]), | ||
(key: "acl", short: "ACL", long: "Access Control List"), | ||
(key: "crdt", short: "CRDT", long: "Conflict-free Replicated data Type"), | ||
(key: "cap", short: "CAP", long: "Consistency Availability Partition tolerance"), | ||
(key: "acid", short: "ACID", long: "atomicity, consistency, isolation, durability"), | ||
(key: "snb", short: "SNB", long: "Social Network Benchmark") | ||
(key: "crdt", short: "CRDT", long: "Conflict-free Replicated data Type", desc: [@bib:crdt]), | ||
(key: "cap", short: "CAP", long: "Consistency Availability Partition tolerance", desc: [@bib:cap]), | ||
(key: "acid", short: "ACID", long: "atomicity, consistency, isolation, durability", desc: [@bib:acid]), | ||
(key: "snb", short: "SNB", long: "Social Network Benchmark", desc: [@bib:ldbc]) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters