_config.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. sphinx:
  35. config:
  36. mathjax3_config:
  37. TeX:
  38. Macros:
  39. "N": "\\mathbb{N}"
  40. "floor": ["\\lfloor#1\\rfloor", 1]
  41. "bmat" : ["\\left[\\begin{array}"]
  42. "emat" : ["\\end{array}\\right]"]
  43. parse:
  44. myst_enable_extensions:
  45. - amsmath
  46. - colon_fence
  47. - dollarmath
  48. - linkify
  49. - substitution