Skip to article frontmatterSkip to article content

Add authors and their information to a page

Planet Jupyter

Jupyter Book allows you to add authors and their information to a page in order to provide attribution, affiliations, etc. This page describes a few common use-cases and how to accomplish them.

Add authors to a page or a book

To add authors to your project, you can add them at the book level with the following key:

myst.yml
project:
  authors:
    - name: Jo the Jovyan
    - name: Planet Jupyter

To add authors at the page level, you can add the following to your page metadata:

my-page.md
---
authors:
  - name: Jo the Jovyan
  - name: Planet Jupyter
---

Learn more