L Maxime
L Maxime

Reputation: 124

Reference another notebook in a notebook

I am using mkdocs to build my static website. The tree of my project is the following:

docs/
├── index.md
├── numerical_methods
│   └── ode
│       ├── explicit_euler.ipynb
│       └── implicit_euler.ipynb
└── numerical_methods.md

I want add a link to redirect from explicit_euler.ipynb to implicit_euler.ipynb. I added this part [the backward Euler method](./numerical_methods/ode/implicit_euler.ipynb) in explicit_euler.ipynb and it is not redirecting to the other notebook.

If it can help, mkdocs.yml:

site_name: Learning Site
site_dir: public

nav:
  - Home: index.md
  - Numerical Methods: numerical_methods.md

theme: 
  name: material
  icon:
      logo: material/book

  language: en
  features:
    - navigation.tabs
    - content.code.annotate
  palette:
    # Palette toggle for light mode
    - scheme: default
      toggle:
        icon: material/brightness-7
        name: Switch to dark mode

    # Palette toggle for dark mode
    - scheme: slate
      toggle:
        icon: material/brightness-4
        name: Switch to light mode
  plugins:
    - typeset

markdown_extensions:
  - pymdownx.arithmatex:
      generic: true

extra_javascript:
  - javascripts/mathjax.js
  - https://polyfill.io/v3/polyfill.min.js?features=es6
  - https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js

plugins:
  - search
  - mkdocs-jupyter:
      include_source: True


Upvotes: 0

Views: 82

Answers (0)

Related Questions