_config.yml 958 B

12345678910111213141516171819202122232425262728293031
  1. # Book settings
  2. # Learn more at https://jupyterbook.org/customize/config.html
  3. title: Fundamentals of Data Science
  4. author: UC_Berkeley, UEA_Norwich
  5. logo: UEA_Norwich.jpg
  6. number_toc_chapters: true
  7. # Force re-execution of notebooks on each build.
  8. # See https://jupyterbook.org/content/execute.html
  9. execute:
  10. execute_notebooks: force
  11. # Define the name of the latex output file for PDF builds
  12. latex:
  13. latex_documents:
  14. targetname: book.tex
  15. # Information about where the book exists on the web
  16. repository:
  17. url: https://github.com/executablebooks/jupyter-book # Online location of your book
  18. path_to_book: docs # Optional path to your book, relative to the repository root
  19. branch: master # Which branch of the repository should be used when creating links (optional)
  20. # Add GitHub buttons to your book
  21. # See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository
  22. html:
  23. use_issues_button: true
  24. use_repository_button: true