Copyright

By default, everything you put into the project folder will be shared publicly. In many instances, this will also include works by others than yourself or your co-authors, because you may use existing data, images or software. In these cases, you should make sure to only share them to the extent you are allowed to. In the following, we will be focusing on copyright, but of course, there can also be other restrictions.

Adding an Image

Let’s practice what you learned by adding an image to the manuscript. We’ll use this picture of a penguin from Flickr. First, try to answer the following questions:

  1. Under which license is the picture available?
  2. Is it free/open?
  3. Is it appropriate for the type of work and use case?
  4. Under which conditions may the work be shared?
  1. The picture has been put under the license CC0 1.0
  2. The license is free/open
  3. The license is appropriate for images
  4. The license contains no (major) conditions

You can now download the image and move it to your project folder (maybe call it penguin.jpg). In your manuscript file, find the line that says “add image here”, remove it, and add the image instead, including proper attribution.

Although the license CC0 doesn’t require it, we still recommend providing proper attribution.

!["[Chinstrap Penguin](https://flic.kr/p/2pEKnUr)" by "steve b" licensed under [CC0 1.0](https://creativecommons.org/publicdomain/zero/1.0/)](penguin.jpg)

If it is likely that the article gets printed, you might want to ensure that the link to the work is retained in that case:

!["[Chinstrap Penguin](https://flic.kr/p/2pEKnUr)" by "steve b" available under [CC0 1.0](https://creativecommons.org/publicdomain/zero/1.0/) from [`flic.kr/p/2pEKnUr`](https://flic.kr/p/2pEKnUr)](penguin.jpg)

Let’s render the document and see if the changes were successful (open Manuscript.pdf afterwards):

Terminal
quarto render Manuscript.qmd

In addition, we recommend creating a file called LICENSE.txt to describe the license of the image:

LICENSE.txt
"Chinstrap Penguin" stored in "penguin.jpg" by "steve b" available from <https://flic.kr/p/2pEKnUr> is licensed under CC0 1.0: <https://creativecommons.org/publicdomain/zero/1.0/>

If the license required adding the full license text, you would also need to copy it to the project folder.

Finally, you can store the changes in the version control system:

Terminal
git status
git add .
git commit -m "Add image"

Wrap-up

If you would like to learn more about copyright and licenses you might find the following resources interesting:

  • “Open Content – A Practical Guide to Using Creative Commons Licences” by Kreutzer (2024)
  • “Creative Commons Certificate for Educators, Academic Librarians, and Open Culture” by Creative Commons (2024b)
  • “Freie Software – Zwischen Privat- und Gemeineigentum” by Grassmuck (2004)
  • “Rechtsfragen bei Open Science: Ein Leitfaden” by Kreutzer & Lahmann (2021)

References

Creative Commons. (2015, August 8). ShareAlike compatibility analysis: GPL. https://wiki.creativecommons.org/index.php?title=ShareAlike_compatibility_analysis:_GPL&oldid=114476
Creative Commons. (2024a). Can i reuse an excerpt of a larger work that is licensed with the NoDerivs restriction? In Frequently asked questions. Creative Commons. https://creativecommons.org/faq/#can-i-reuse-an-excerpt-of-a-larger-work-that-is-licensed-with-the-noderivs-restriction
Creative Commons. (2024b). Creative Commons certificate for educators, academic librarians, and open culture. https://certificates.creativecommons.org/cccertedu/
Fogel, K. (2006, May 27). The surprising history of copyright and the promise of a post-copyright world. Question copyright. https://questioncopyright.org/promise/
Free Software Foundation. (2024). Is there some way that i can GPL the output people get from use of my program? For example, if my program is used to develop hardware designs, can i require that these designs must be free? In Frequently asked questions about the GNU licenses. Free Software Foundation. https://www.gnu.org/licenses/gpl-faq.en.html#GPLOutput
Grassmuck, V. (2004). Freie Software: zwischen Privat- und Gemeineigentum (2., korrigierte Aufl). Bundeszentrale für politische Bildung. https://web.archive.org/web/20240105071919/https://freie-software.bpb.de/
Kreutzer, T. (2024). Open content – navigating Creative Commons licenses. Deutsche UNESCO-Kommission e. V. und Wikimedia Deutschland - Gesellschaft zur Förderung Freien Wissens e. V. https://www.unesco.de/assets/dokumente/Kommunikation/01_Kommunikation_allgemein/Open-Content_Dez_2024.pdf
Kreutzer, T., & Lahmann, H. (2021). Rechtsfragen bei Open Science: Ein Leitfaden. Hamburg University Press. https://doi.org/10.15460/HUP.211
Linksvayer, M. (2009, March 9). Wikipedia and attribution. Creative Commons. https://creativecommons.org/weblog/entry/13232
Möller, E., Hill, B. M., Garlick, M., Stark, E., Knapp, J. A., Kadlec, P., Stallman, R., Lessig, L., & Beesley, A. (2015, February 17). Definition of free cultural works. https://freedomdefined.org/Definition/1.1
Open Knowledge Foundation. (2016). The open definition - open definition - defining open in open data, open content and open knowledge. https://opendefinition.org/
Open Source Initiative. (2007, March 22). The open source definition. https://opensource.org/osd
Stallman, R. (2022, January 22). For clarity’s sake, please don’t say “licensed under GNU GPL 2”! https://www.gnu.org/licenses/identify-licenses-clearly.html
Wikipedia contributors. (2024). GNU General Public License – linking and derived works. In Wikipedia. Wikipedia, The Free Encyclopedia. https://en.wikipedia.org/w/index.php?title=GNU_General_Public_License&oldid=1244139410#Linking_and_derived_works
Wikipedia contributors. (2025). GNU Free Documentation License – burdens when printing. In Wikipedia. Wikipedia, The Free Encyclopedia. https://en.wikipedia.org/w/index.php?title=GNU_Free_Documentation_License&oldid=1269991857#Burdens_when_printing
Winslow, S. (2020, January 10). Copyright notices in open source software projects. Linux Foundation. https://www.linuxfoundation.org/blog/copyright-notices-in-open-source-software-projects

Footnotes

  1. in Germany: Urheberrecht↩︎

  2. In fact, authors should not create their own license texts if the purpose is to share their work freely and openly with others. By using a boilerplate license others know what to expect, also because it may have already been tested in courts.↩︎

  3. in Germany: Gemeinfreiheit↩︎

  4. in Germany: Schranken des Urheberrechts↩︎

  5. Accessing the checklists requires a (free) account on their website.↩︎

  6. or others whose names are provided with the original work↩︎

  7. Such as Copyright (c) 2025 Jane Doe↩︎

  8. Of course, you still need to abide by the license conditions of the original work, such as attribution.↩︎

  9. or sometimes also under a later version or under a compatible license↩︎

  10. Note, however, that copyleft licenses are not automatic: A derivative work of a copylefted work is not “implicitly” under the same license – others would commit a copyright violation if they just took it. Only if the derivative author explicitly makes it available under the same license, others may use the derivative work under the same terms.↩︎