_config.yml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # Book settings
  2. # Learn more at https://jupyterbook.org/customize/config.html
  3. # Based on
  4. # https://github.com/code-first-ml/book1/blob/main/_config.yml
  5. title: "State Space Models: A Modern Approach"
  6. author: Kevin Murphy, Scott Linderman, et al.
  7. #logo: logo.png
  8. # Force re-execution of notebooks on each build.
  9. # See https://jupyterbook.org/content/execute.html
  10. execute:
  11. execute_notebooks: auto
  12. # Define the name of the latex output file for PDF builds
  13. latex:
  14. latex_documents:
  15. targetname: book.tex
  16. # Add a bibtex file so that we can create citations
  17. bibtex_bibfiles:
  18. - references.bib
  19. # Information about where the book exists on the web
  20. repository:
  21. url: https://github.com/probml/ssm-book
  22. branch: main
  23. launch_buttons:
  24. colab_url: "https://colab.research.google.com"
  25. # Add GitHub buttons to your book
  26. # See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository
  27. html:
  28. use_issues_button: true
  29. use_repository_button: true
  30. # https://jupyterbook.org/en/stable/content/math.html
  31. #sphinx:
  32. # config:
  33. # mathjax_path: https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
  34. parse:
  35. myst_enable_extensions:
  36. - amsmath
  37. - colon_fence
  38. - dollarmath
  39. - linkify
  40. - substitution