diff --git a/_quarto.yml b/_quarto.yml
index 4ead6ab..41bf688 100644
--- a/_quarto.yml
+++ b/_quarto.yml
@@ -52,6 +52,8 @@ website:
contents:
- href: in_depth_material/introduction_copyright.qmd
text: "Introduction to Copyright and Licensing"
+ - href: in_depth_material/licenses-continued.qmd
+ text: "Licenses Continued"
- href: in_depth_material/data_dic_generation.qmd
text: "Automatic Generation of Data Dictionaries"
# End Website
diff --git a/choose-license.qmd b/choose-license.qmd
index e4d647c..680058a 100644
--- a/choose-license.qmd
+++ b/choose-license.qmd
@@ -272,8 +272,8 @@ unique(installed.packages(fields="License")[deps, "License"])
:::
We have prepared two advanced license flowcharts,
-one for software, writing, images, audio, and video in @fig-flowchart-non-data
-and one for data in @fig-flowchart-data where you can make additional choices.
+one for software, writing, images, audio, and video in [the Advanced License Flowchart for Software, Writing, Images, Audio, and Video](/in_depth_material/licenses-continued.qmd#fig-flowchart-flowchart-non-data)
+and one for data in [the Advanced License Flowchart for Data(base)](/in_depth_material/licenses-continued.qmd#fig-flowchart-data) where you can make additional choices.
Note, however, that especially the advanced flowchart for licensing data is quite complex
and we recommend you to seek legal counsel if you want to be sure.
@@ -288,7 +288,7 @@ All conditions are explained on the page on [copyright](copyright.qmd).
From the Creative Commons licenses,
only [CC0\ 1.0][cc0] does not require providing attribution,
-and all software licenses in @fig-flowchart-non-data require providing attribution.
+and all software licenses in [the Advanced License Flowchart for Data(base)](/in_depth_material/licenses-continued.qmd#fig-flowchart-data) require providing attribution.
As an author, you are free to waive license conditions such as attribution, however.
::: {#nte-silos .callout-note collapse="true"}
@@ -578,80 +578,3 @@ git status
git add .
git commit -m "Add license"
```
-
-## Additional Figures {.appendix}
-
-::: {#fig-flowchart-non-data}
-```{mermaid}
-flowchart TB
- start("We want to choose a
license for software,
writing, image, audio,
or video.") --"We adapted a work by
others shared under a
free/open license."--> use_existing_license["Use its license"]
- start --"We created the work
entirely by ourselves."--> regulation("Other regulation
(by community or funder)
concerning license?")
-
- regulation --"Exists"--> follow_existing_norms["Follow that"]
- regulation --"Does not
exist"--> type("Work type?")
-
- type --"Software"--> code_sa("Attribution?
Indicate license?
Add license text?
State changes?
Disclose code?
Copyleft?")
- type --"Writing, image, audio, video"--> nocode_cc("Attribution?
Indicate license?
State changes?
Anti-DRM?
Copyleft?")
-
- code_sa --"Attribution &
Add license text &
State changes"--> apache["Apache 2.0"]
- code_sa --"Attribution &
Indicate license &
Disclose code &
Weak copyleft"--> mpl["MPL 2.0"]
- code_sa --"Attribution &
Add license text &
State changes &
Disclose code &
Strong copyleft"--> agpl["AGPLv3"]
-
- nocode_cc --"Neither"--> cc0["CC0 1.0"]
- nocode_cc --"Attribution &
Indicate license &
State changes &
Anti-DRM"--> cc_by["CC BY 4.0"]
- nocode_cc --"Attribution &
Indicate license &
State changes &
Anti-DRM &
Copyleft"--> cc_by_sa["CC BY-SA 4.0"]
-
- click apache href "https://choosealicense.com/licenses/apache-2.0/"
- click mpl href "https://choosealicense.com/licenses/mpl-2.0/"
- click agpl href "https://choosealicense.com/licenses/agpl-3.0/"
- click cc0 href "https://creativecommons.org/publicdomain/zero/1.0/"
- click cc_by href "https://creativecommons.org/licenses/by/4.0/"
- click cc_by_sa href "https://creativecommons.org/licenses/by-sa/4.0/"
-```
-
-_Note._ DRM = digital rights management
-
-Advanced License Flowchart for Software, Writing, Images, Audio, and Video
-:::
-
-::: {#fig-flowchart-data}
-```{mermaid}
-flowchart TB
- start("We want to choose a
license for data.") --"We adapted a database by
others shared under a
free/open license."--> use_existing_license_db["Use its license(s)
for content and database"]
- start --"We created a database
entirely by ourselves."--> regulation("Other regulation
(by community or funder)
concerning license?")
-
- regulation --"Exists"--> follow_existing_norms["Follow that"]
- regulation --"Does not
exist"--> existing_license_content("Adapting content
by others?")
-
- subgraph content["License for content"]
- existing_license_content --"No, we created the content
entirely by ourselves."--> facts("Entries are facts
(like measurements
or metadata)?")
- existing_license_content --"Yes, it was
shared under a
free/open license."--> use_existing_license_content["Use that license"]
- facts --"Yes"--> cc0_content_metadata["CC0 1.0"]
- facts --"No"--> choose_license["Consult flowchart for
software, writing,
image, audio, and video"]
- end
-
- subgraph database["License for database"]
- choose_license --> switch_license["Depending on
content license"]
- use_existing_license_content --> switch_license
-
- cc0_content_metadata --> cc0_db["CC0 1.0"]
- switch_license --"CC0 or
non-CC license"--> sa("Attribution?
Indicate license?
Anti-DRM?
Copyleft?")
- switch_license --"CC BY or
CC BY-SA"--> same["Same license for DB"]
-
- sa --"Neither"--> cc0_db
- sa --"Attribution &
Indicate license &
Anti-DRM &
Copyleft"--> odbl["ODbL 1.0"]
-
- %% the following link is only added to have terminal nodes on the same level
- sa ~~~ same
- end
-
- click cc0_content_metadata href "https://creativecommons.org/publicdomain/zero/1.0/"
- click cc0_db href "https://creativecommons.org/publicdomain/zero/1.0/"
- click odbl href "https://opendatacommons.org/licenses/odbl/summary/"
-```
-
-_Note._ DRM = digital rights management
-
-Advanced License Flowchart for Data(base)
-:::
-
diff --git a/in_depth_material/licenses-continued.qmd b/in_depth_material/licenses-continued.qmd
new file mode 100644
index 0000000..8554823
--- /dev/null
+++ b/in_depth_material/licenses-continued.qmd
@@ -0,0 +1,87 @@
+---
+title: Licenses Continued
+---
+
+
+
+
+## Additional Figures
+
+### Software, Writing, Images, Audio, and Video
+
+::: {#fig-flowchart-non-data}
+```{mermaid}
+flowchart TB
+ start("We want to choose a
license for software,
writing, image, audio,
or video.") --"We adapted a work by
others shared under a
free/open license."--> use_existing_license["Use its license"]
+ start --"We created the work
entirely by ourselves."--> regulation("Other regulation
(by community or funder)
concerning license?")
+
+ regulation --"Exists"--> follow_existing_norms["Follow that"]
+ regulation --"Does not
exist"--> type("Work type?")
+
+ type --"Software"--> code_sa("Attribution?
Indicate license?
Add license text?
State changes?
Disclose code?
Copyleft?")
+ type --"Writing, image, audio, video"--> nocode_cc("Attribution?
Indicate license?
State changes?
Anti-DRM?
Copyleft?")
+
+ code_sa --"Attribution &
Add license text &
State changes"--> apache["Apache 2.0"]
+ code_sa --"Attribution &
Indicate license &
Disclose code &
Weak copyleft"--> mpl["MPL 2.0"]
+ code_sa --"Attribution &
Add license text &
State changes &
Disclose code &
Strong copyleft"--> agpl["AGPLv3"]
+
+ nocode_cc --"Neither"--> cc0["CC0 1.0"]
+ nocode_cc --"Attribution &
Indicate license &
State changes &
Anti-DRM"--> cc_by["CC BY 4.0"]
+ nocode_cc --"Attribution &
Indicate license &
State changes &
Anti-DRM &
Copyleft"--> cc_by_sa["CC BY-SA 4.0"]
+
+ click apache href "https://choosealicense.com/licenses/apache-2.0/"
+ click mpl href "https://choosealicense.com/licenses/mpl-2.0/"
+ click agpl href "https://choosealicense.com/licenses/agpl-3.0/"
+ click cc0 href "https://creativecommons.org/publicdomain/zero/1.0/"
+ click cc_by href "https://creativecommons.org/licenses/by/4.0/"
+ click cc_by_sa href "https://creativecommons.org/licenses/by-sa/4.0/"
+```
+
+_Note._ DRM = digital rights management
+
+Advanced License Flowchart for Software, Writing, Images, Audio, and Video
+:::
+
+### Data and Databases
+
+::: {#fig-flowchart-data}
+```{mermaid}
+flowchart TB
+ start("We want to choose a
license for data.") --"We adapted a database by
others shared under a
free/open license."--> use_existing_license_db["Use its license(s)
for content and database"]
+ start --"We created a database
entirely by ourselves."--> regulation("Other regulation
(by community or funder)
concerning license?")
+
+ regulation --"Exists"--> follow_existing_norms["Follow that"]
+ regulation --"Does not
exist"--> existing_license_content("Adapting content
by others?")
+
+ subgraph content["License for content"]
+ existing_license_content --"No, we created the content
entirely by ourselves."--> facts("Entries are facts
(like measurements
or metadata)?")
+ existing_license_content --"Yes, it was
shared under a
free/open license."--> use_existing_license_content["Use that license"]
+ facts --"Yes"--> cc0_content_metadata["CC0 1.0"]
+ facts --"No"--> choose_license["Consult flowchart for
software, writing,
image, audio, and video"]
+ end
+
+ subgraph database["License for database"]
+ choose_license --> switch_license["Depending on
content license"]
+ use_existing_license_content --> switch_license
+
+ cc0_content_metadata --> cc0_db["CC0 1.0"]
+ switch_license --"CC0 or
non-CC license"--> sa("Attribution?
Indicate license?
Anti-DRM?
Copyleft?")
+ switch_license --"CC BY or
CC BY-SA"--> same["Same license for DB"]
+
+ sa --"Neither"--> cc0_db
+ sa --"Attribution &
Indicate license &
Anti-DRM &
Copyleft"--> odbl["ODbL 1.0"]
+
+ %% the following link is only added to have terminal nodes on the same level
+ sa ~~~ same
+ end
+
+ click cc0_content_metadata href "https://creativecommons.org/publicdomain/zero/1.0/"
+ click cc0_db href "https://creativecommons.org/publicdomain/zero/1.0/"
+ click odbl href "https://opendatacommons.org/licenses/odbl/summary/"
+```
+
+_Note._ DRM = digital rights management
+
+Advanced License Flowchart for Data(base)
+:::
+