├── .github └── workflows │ ├── master.yaml │ └── other_branches.yaml ├── LICENSE ├── README.md ├── ack.php ├── appendices └── history.php ├── bib ├── biblio.bib ├── bibstyle.css └── index.html ├── bio.php ├── book.php ├── chapters ├── 01-intro.php ├── 02-graph.php ├── 03-knowledge.php ├── 04-deductive.php ├── 05-inductive.php ├── 06-creation.php ├── 07-quality.php ├── 08-refinement.php ├── 09-publication.php ├── 10-kg.php ├── 11-conclude.php └── references.php ├── css ├── fonts.css ├── prism.css └── style.css ├── fonts ├── CharisSIL │ ├── CharisSIL-B.woff │ ├── CharisSIL-BI.woff │ ├── CharisSIL-I.woff │ └── CharisSIL-R.woff ├── Hasklig │ ├── Hasklig-Black.otf │ ├── Hasklig-BlackIt.otf │ ├── Hasklig-Bold.otf │ ├── Hasklig-BoldIt.otf │ ├── Hasklig-ExtraLight.otf │ ├── Hasklig-ExtraLightIt.otf │ ├── Hasklig-It.otf │ ├── Hasklig-Light.otf │ ├── Hasklig-LightIt.otf │ ├── Hasklig-Medium.otf │ ├── Hasklig-MediumIt.otf │ ├── Hasklig-Regular.otf │ ├── Hasklig-Semibold.otf │ └── Hasklig-SemiboldIt.otf ├── Quattrocento-Bold.ttf ├── Quattrocento-Regular.ttf ├── lmsans10-regular-webfont.ttf └── ufonts.com_cmss8.ttf ├── images ├── chev1-mini.png ├── cover-no-text.jpg ├── earth.png ├── edge-revtip.png ├── edge-revtip2.png ├── edge-source.png ├── edge-source2.png ├── edge-tip.png ├── edge-tip.svg ├── edge-tip2.png ├── fig-TransE.svg ├── fig-access.svg ├── fig-airports.svg ├── fig-anonymised.svg ├── fig-bad.svg ├── fig-badOnt.svg ├── fig-bgpFS.svg ├── fig-cap.svg ├── fig-capital.svg ├── fig-cgp.svg ├── fig-cgp1.svg ├── fig-cgp2.svg ├── fig-cgp3.svg ├── fig-cgp4.svg ├── fig-cgp5.svg ├── fig-chileTransport.svg ├── fig-classhier.svg ├── fig-cpRank.svg ├── fig-cq.svg ├── fig-crypto.svg ├── fig-delg.svg ├── fig-delg.svg.other ├── fig-direct.svg ├── fig-distEg.svg ├── fig-emergentSchema.svg ├── fig-emergentSchema2.svg ├── fig-fsa.svg ├── fig-gd.svg ├── fig-globalIds.svg ├── fig-gnn.svg ├── fig-gp.svg ├── fig-hg.svg ├── fig-html.svg ├── fig-identity.svg ├── fig-ind.svg ├── fig-inline-rule.svg ├── fig-ld.svg ├── fig-license.svg ├── fig-list.svg ├── fig-nary.svg ├── fig-ngp.svg ├── fig-ngraph.svg ├── fig-pagerank.svg ├── fig-path.svg ├── fig-path1.svg ├── fig-path2.svg ├── fig-path3.svg ├── fig-path4.svg ├── fig-pg.svg ├── fig-pgc.svg ├── fig-qrew.svg ├── fig-qrew1.svg ├── fig-qrew2.svg ├── fig-qrew3.svg ├── fig-qrew4.svg ├── fig-qrew5.svg ├── fig-qrew6.svg ├── fig-qrew7.svg ├── fig-rdbCrime.svg ├── fig-rdfstar.svg ├── fig-reif.svg ├── fig-sg.svg ├── fig-shapeExample.svg ├── fig-singprop.svg ├── fig-temporal.svg ├── fig-temporal2.svg ├── fig-textExtract.svg ├── fig-time.svg ├── fig-time1.svg ├── fig-time2.svg ├── fig-transEE.svg ├── fig-transER.svg ├── fig-transform.svg ├── fig-transform1.svg ├── fig-transform2.svg ├── fig-transform3.svg ├── fig-usage.svg ├── github.svg ├── mock-cover.jpg ├── rule-mining-domairport.svg ├── rule-mining-domflight.svg ├── rule-mining-not-international.svg ├── small-cover.jpg ├── tab-ontClass-allval-axiom.svg ├── tab-ontClass-allval-example.svg ├── tab-ontClass-card-axiom.svg ├── tab-ontClass-card-example.svg ├── tab-ontClass-hasself-axiom.svg ├── tab-ontClass-hasself-example.svg ├── tab-ontClass-hasval-axiom.svg ├── tab-ontClass-hasval-example.svg ├── tab-ontClass-inter-cond.svg ├── tab-ontClass-qualcard-axiom.svg ├── tab-ontClass-qualcard-example.svg ├── tab-ontClass-someval-axiom.svg ├── tab-ontClass-someval-example.svg ├── tab-ontEqIneq-neg-axiom.svg ├── tab-ontEqIneq-neg-example.svg ├── tab-ontProp-asym-cond.svg ├── tab-ontProp-disj-cond.svg ├── tab-ontProp-irrefl-cond.svg ├── tab-ontProp-key-cond.svg ├── tab-ontProp-refl-cond.svg ├── tab-rulesRdfs-domain.svg ├── tab-rulesRdfs-range.svg └── tab-rulesRdfs-subprop.svg ├── index-mathjax.html ├── js └── prism.js ├── lib ├── TheRefs.php ├── bibtexbrowser.php └── helper.php ├── preface.php ├── robots.txt └── toc.php /.github/workflows/master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/.github/workflows/master.yaml -------------------------------------------------------------------------------- /.github/workflows/other_branches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/.github/workflows/other_branches.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/README.md -------------------------------------------------------------------------------- /ack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/ack.php -------------------------------------------------------------------------------- /appendices/history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/appendices/history.php -------------------------------------------------------------------------------- /bib/biblio.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/bib/biblio.bib -------------------------------------------------------------------------------- /bib/bibstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/bib/bibstyle.css -------------------------------------------------------------------------------- /bib/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/bib/index.html -------------------------------------------------------------------------------- /bio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/bio.php -------------------------------------------------------------------------------- /book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/book.php -------------------------------------------------------------------------------- /chapters/01-intro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/chapters/01-intro.php -------------------------------------------------------------------------------- /chapters/02-graph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/chapters/02-graph.php -------------------------------------------------------------------------------- /chapters/03-knowledge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/chapters/03-knowledge.php -------------------------------------------------------------------------------- /chapters/04-deductive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/chapters/04-deductive.php -------------------------------------------------------------------------------- /chapters/05-inductive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/chapters/05-inductive.php -------------------------------------------------------------------------------- /chapters/06-creation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/chapters/06-creation.php -------------------------------------------------------------------------------- /chapters/07-quality.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/chapters/07-quality.php -------------------------------------------------------------------------------- /chapters/08-refinement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/chapters/08-refinement.php -------------------------------------------------------------------------------- /chapters/09-publication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/chapters/09-publication.php -------------------------------------------------------------------------------- /chapters/10-kg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/chapters/10-kg.php -------------------------------------------------------------------------------- /chapters/11-conclude.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/chapters/11-conclude.php -------------------------------------------------------------------------------- /chapters/references.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/chapters/references.php -------------------------------------------------------------------------------- /css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/css/fonts.css -------------------------------------------------------------------------------- /css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/css/prism.css -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/css/style.css -------------------------------------------------------------------------------- /fonts/CharisSIL/CharisSIL-B.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/CharisSIL/CharisSIL-B.woff -------------------------------------------------------------------------------- /fonts/CharisSIL/CharisSIL-BI.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/CharisSIL/CharisSIL-BI.woff -------------------------------------------------------------------------------- /fonts/CharisSIL/CharisSIL-I.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/CharisSIL/CharisSIL-I.woff -------------------------------------------------------------------------------- /fonts/CharisSIL/CharisSIL-R.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/CharisSIL/CharisSIL-R.woff -------------------------------------------------------------------------------- /fonts/Hasklig/Hasklig-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/Hasklig/Hasklig-Black.otf -------------------------------------------------------------------------------- /fonts/Hasklig/Hasklig-BlackIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/Hasklig/Hasklig-BlackIt.otf -------------------------------------------------------------------------------- /fonts/Hasklig/Hasklig-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/Hasklig/Hasklig-Bold.otf -------------------------------------------------------------------------------- /fonts/Hasklig/Hasklig-BoldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/Hasklig/Hasklig-BoldIt.otf -------------------------------------------------------------------------------- /fonts/Hasklig/Hasklig-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/Hasklig/Hasklig-ExtraLight.otf -------------------------------------------------------------------------------- /fonts/Hasklig/Hasklig-ExtraLightIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/Hasklig/Hasklig-ExtraLightIt.otf -------------------------------------------------------------------------------- /fonts/Hasklig/Hasklig-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/Hasklig/Hasklig-It.otf -------------------------------------------------------------------------------- /fonts/Hasklig/Hasklig-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/Hasklig/Hasklig-Light.otf -------------------------------------------------------------------------------- /fonts/Hasklig/Hasklig-LightIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/Hasklig/Hasklig-LightIt.otf -------------------------------------------------------------------------------- /fonts/Hasklig/Hasklig-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/Hasklig/Hasklig-Medium.otf -------------------------------------------------------------------------------- /fonts/Hasklig/Hasklig-MediumIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/Hasklig/Hasklig-MediumIt.otf -------------------------------------------------------------------------------- /fonts/Hasklig/Hasklig-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/Hasklig/Hasklig-Regular.otf -------------------------------------------------------------------------------- /fonts/Hasklig/Hasklig-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/Hasklig/Hasklig-Semibold.otf -------------------------------------------------------------------------------- /fonts/Hasklig/Hasklig-SemiboldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/Hasklig/Hasklig-SemiboldIt.otf -------------------------------------------------------------------------------- /fonts/Quattrocento-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/Quattrocento-Bold.ttf -------------------------------------------------------------------------------- /fonts/Quattrocento-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/Quattrocento-Regular.ttf -------------------------------------------------------------------------------- /fonts/lmsans10-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/lmsans10-regular-webfont.ttf -------------------------------------------------------------------------------- /fonts/ufonts.com_cmss8.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/fonts/ufonts.com_cmss8.ttf -------------------------------------------------------------------------------- /images/chev1-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/chev1-mini.png -------------------------------------------------------------------------------- /images/cover-no-text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/cover-no-text.jpg -------------------------------------------------------------------------------- /images/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/earth.png -------------------------------------------------------------------------------- /images/edge-revtip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/edge-revtip.png -------------------------------------------------------------------------------- /images/edge-revtip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/edge-revtip2.png -------------------------------------------------------------------------------- /images/edge-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/edge-source.png -------------------------------------------------------------------------------- /images/edge-source2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/edge-source2.png -------------------------------------------------------------------------------- /images/edge-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/edge-tip.png -------------------------------------------------------------------------------- /images/edge-tip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/edge-tip.svg -------------------------------------------------------------------------------- /images/edge-tip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/edge-tip2.png -------------------------------------------------------------------------------- /images/fig-TransE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-TransE.svg -------------------------------------------------------------------------------- /images/fig-access.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-access.svg -------------------------------------------------------------------------------- /images/fig-airports.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-airports.svg -------------------------------------------------------------------------------- /images/fig-anonymised.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-anonymised.svg -------------------------------------------------------------------------------- /images/fig-bad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-bad.svg -------------------------------------------------------------------------------- /images/fig-badOnt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-badOnt.svg -------------------------------------------------------------------------------- /images/fig-bgpFS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-bgpFS.svg -------------------------------------------------------------------------------- /images/fig-cap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-cap.svg -------------------------------------------------------------------------------- /images/fig-capital.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-capital.svg -------------------------------------------------------------------------------- /images/fig-cgp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-cgp.svg -------------------------------------------------------------------------------- /images/fig-cgp1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-cgp1.svg -------------------------------------------------------------------------------- /images/fig-cgp2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-cgp2.svg -------------------------------------------------------------------------------- /images/fig-cgp3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-cgp3.svg -------------------------------------------------------------------------------- /images/fig-cgp4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-cgp4.svg -------------------------------------------------------------------------------- /images/fig-cgp5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-cgp5.svg -------------------------------------------------------------------------------- /images/fig-chileTransport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-chileTransport.svg -------------------------------------------------------------------------------- /images/fig-classhier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-classhier.svg -------------------------------------------------------------------------------- /images/fig-cpRank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-cpRank.svg -------------------------------------------------------------------------------- /images/fig-cq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-cq.svg -------------------------------------------------------------------------------- /images/fig-crypto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-crypto.svg -------------------------------------------------------------------------------- /images/fig-delg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-delg.svg -------------------------------------------------------------------------------- /images/fig-delg.svg.other: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-delg.svg.other -------------------------------------------------------------------------------- /images/fig-direct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-direct.svg -------------------------------------------------------------------------------- /images/fig-distEg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-distEg.svg -------------------------------------------------------------------------------- /images/fig-emergentSchema.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-emergentSchema.svg -------------------------------------------------------------------------------- /images/fig-emergentSchema2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-emergentSchema2.svg -------------------------------------------------------------------------------- /images/fig-fsa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-fsa.svg -------------------------------------------------------------------------------- /images/fig-gd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-gd.svg -------------------------------------------------------------------------------- /images/fig-globalIds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-globalIds.svg -------------------------------------------------------------------------------- /images/fig-gnn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-gnn.svg -------------------------------------------------------------------------------- /images/fig-gp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-gp.svg -------------------------------------------------------------------------------- /images/fig-hg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-hg.svg -------------------------------------------------------------------------------- /images/fig-html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-html.svg -------------------------------------------------------------------------------- /images/fig-identity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-identity.svg -------------------------------------------------------------------------------- /images/fig-ind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-ind.svg -------------------------------------------------------------------------------- /images/fig-inline-rule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-inline-rule.svg -------------------------------------------------------------------------------- /images/fig-ld.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-ld.svg -------------------------------------------------------------------------------- /images/fig-license.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-license.svg -------------------------------------------------------------------------------- /images/fig-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-list.svg -------------------------------------------------------------------------------- /images/fig-nary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-nary.svg -------------------------------------------------------------------------------- /images/fig-ngp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-ngp.svg -------------------------------------------------------------------------------- /images/fig-ngraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-ngraph.svg -------------------------------------------------------------------------------- /images/fig-pagerank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-pagerank.svg -------------------------------------------------------------------------------- /images/fig-path.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-path.svg -------------------------------------------------------------------------------- /images/fig-path1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-path1.svg -------------------------------------------------------------------------------- /images/fig-path2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-path2.svg -------------------------------------------------------------------------------- /images/fig-path3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-path3.svg -------------------------------------------------------------------------------- /images/fig-path4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-path4.svg -------------------------------------------------------------------------------- /images/fig-pg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-pg.svg -------------------------------------------------------------------------------- /images/fig-pgc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-pgc.svg -------------------------------------------------------------------------------- /images/fig-qrew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-qrew.svg -------------------------------------------------------------------------------- /images/fig-qrew1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-qrew1.svg -------------------------------------------------------------------------------- /images/fig-qrew2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-qrew2.svg -------------------------------------------------------------------------------- /images/fig-qrew3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-qrew3.svg -------------------------------------------------------------------------------- /images/fig-qrew4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-qrew4.svg -------------------------------------------------------------------------------- /images/fig-qrew5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-qrew5.svg -------------------------------------------------------------------------------- /images/fig-qrew6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-qrew6.svg -------------------------------------------------------------------------------- /images/fig-qrew7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-qrew7.svg -------------------------------------------------------------------------------- /images/fig-rdbCrime.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-rdbCrime.svg -------------------------------------------------------------------------------- /images/fig-rdfstar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-rdfstar.svg -------------------------------------------------------------------------------- /images/fig-reif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-reif.svg -------------------------------------------------------------------------------- /images/fig-sg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-sg.svg -------------------------------------------------------------------------------- /images/fig-shapeExample.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-shapeExample.svg -------------------------------------------------------------------------------- /images/fig-singprop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-singprop.svg -------------------------------------------------------------------------------- /images/fig-temporal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-temporal.svg -------------------------------------------------------------------------------- /images/fig-temporal2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-temporal2.svg -------------------------------------------------------------------------------- /images/fig-textExtract.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-textExtract.svg -------------------------------------------------------------------------------- /images/fig-time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-time.svg -------------------------------------------------------------------------------- /images/fig-time1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-time1.svg -------------------------------------------------------------------------------- /images/fig-time2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-time2.svg -------------------------------------------------------------------------------- /images/fig-transEE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-transEE.svg -------------------------------------------------------------------------------- /images/fig-transER.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-transER.svg -------------------------------------------------------------------------------- /images/fig-transform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-transform.svg -------------------------------------------------------------------------------- /images/fig-transform1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-transform1.svg -------------------------------------------------------------------------------- /images/fig-transform2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-transform2.svg -------------------------------------------------------------------------------- /images/fig-transform3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-transform3.svg -------------------------------------------------------------------------------- /images/fig-usage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/fig-usage.svg -------------------------------------------------------------------------------- /images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/github.svg -------------------------------------------------------------------------------- /images/mock-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/mock-cover.jpg -------------------------------------------------------------------------------- /images/rule-mining-domairport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/rule-mining-domairport.svg -------------------------------------------------------------------------------- /images/rule-mining-domflight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/rule-mining-domflight.svg -------------------------------------------------------------------------------- /images/rule-mining-not-international.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/rule-mining-not-international.svg -------------------------------------------------------------------------------- /images/small-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/small-cover.jpg -------------------------------------------------------------------------------- /images/tab-ontClass-allval-axiom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-ontClass-allval-axiom.svg -------------------------------------------------------------------------------- /images/tab-ontClass-allval-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-ontClass-allval-example.svg -------------------------------------------------------------------------------- /images/tab-ontClass-card-axiom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-ontClass-card-axiom.svg -------------------------------------------------------------------------------- /images/tab-ontClass-card-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-ontClass-card-example.svg -------------------------------------------------------------------------------- /images/tab-ontClass-hasself-axiom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-ontClass-hasself-axiom.svg -------------------------------------------------------------------------------- /images/tab-ontClass-hasself-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-ontClass-hasself-example.svg -------------------------------------------------------------------------------- /images/tab-ontClass-hasval-axiom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-ontClass-hasval-axiom.svg -------------------------------------------------------------------------------- /images/tab-ontClass-hasval-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-ontClass-hasval-example.svg -------------------------------------------------------------------------------- /images/tab-ontClass-inter-cond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-ontClass-inter-cond.svg -------------------------------------------------------------------------------- /images/tab-ontClass-qualcard-axiom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-ontClass-qualcard-axiom.svg -------------------------------------------------------------------------------- /images/tab-ontClass-qualcard-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-ontClass-qualcard-example.svg -------------------------------------------------------------------------------- /images/tab-ontClass-someval-axiom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-ontClass-someval-axiom.svg -------------------------------------------------------------------------------- /images/tab-ontClass-someval-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-ontClass-someval-example.svg -------------------------------------------------------------------------------- /images/tab-ontEqIneq-neg-axiom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-ontEqIneq-neg-axiom.svg -------------------------------------------------------------------------------- /images/tab-ontEqIneq-neg-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-ontEqIneq-neg-example.svg -------------------------------------------------------------------------------- /images/tab-ontProp-asym-cond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-ontProp-asym-cond.svg -------------------------------------------------------------------------------- /images/tab-ontProp-disj-cond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-ontProp-disj-cond.svg -------------------------------------------------------------------------------- /images/tab-ontProp-irrefl-cond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-ontProp-irrefl-cond.svg -------------------------------------------------------------------------------- /images/tab-ontProp-key-cond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-ontProp-key-cond.svg -------------------------------------------------------------------------------- /images/tab-ontProp-refl-cond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-ontProp-refl-cond.svg -------------------------------------------------------------------------------- /images/tab-rulesRdfs-domain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-rulesRdfs-domain.svg -------------------------------------------------------------------------------- /images/tab-rulesRdfs-range.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-rulesRdfs-range.svg -------------------------------------------------------------------------------- /images/tab-rulesRdfs-subprop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/images/tab-rulesRdfs-subprop.svg -------------------------------------------------------------------------------- /index-mathjax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/index-mathjax.html -------------------------------------------------------------------------------- /js/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/js/prism.js -------------------------------------------------------------------------------- /lib/TheRefs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/lib/TheRefs.php -------------------------------------------------------------------------------- /lib/bibtexbrowser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/lib/bibtexbrowser.php -------------------------------------------------------------------------------- /lib/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/lib/helper.php -------------------------------------------------------------------------------- /preface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/preface.php -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / -------------------------------------------------------------------------------- /toc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowledge-Graphs-Book/HTML-Book/HEAD/toc.php --------------------------------------------------------------------------------