| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- # Book settings
- # Learn more at https://jupyterbook.org/customize/config.html
- # Based on
- # https://github.com/code-first-ml/book1/blob/main/_config.yml
- title: "State Space Models: A Modern Approach"
- author: Kevin Murphy, Scott Linderman, et al.
- #logo: logo.png
- # Force re-execution of notebooks on each build.
- # See https://jupyterbook.org/content/execute.html
- execute:
- execute_notebooks: auto
- # Define the name of the latex output file for PDF builds
- latex:
- latex_documents:
- targetname: book.tex
- # Add a bibtex file so that we can create citations
- bibtex_bibfiles:
- - references.bib
- # Information about where the book exists on the web
- repository:
- url: https://github.com/probml/ssm-book
- branch: main
- launch_buttons:
- colab_url: "https://colab.research.google.com"
- # Add GitHub buttons to your book
- # See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository
- html:
- use_issues_button: true
- use_repository_button: true
- # https://jupyterbook.org/en/stable/content/math.html
- #sphinx:
- # config:
- # mathjax_path: https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- parse:
- myst_enable_extensions:
- - amsmath
- - colon_fence
- - dollarmath
- - linkify
- - substitution
|