1

The Documentation of Jupyter Book is not showing the Intro/Index Page in the TOC on the left sidebar. That's what I want for my book.

The Documentation does not explain how to do this. Does anyone know?

Jupyterbook: Structure the Table of Content

1 Answers1

2

In the _config.yml file, you should add the following entry:

html:
  home_page_in_navbar: false  # Whether to include your home page in the left Navigation Bar

You can see the full configuration file and its defaults in the JupyterBook documentation:

sequoia
  • 143
  • 1
  • 8