Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mobook
GitHub Repository: mobook/mo-book
Path: blob/main/_config.yml
663 views
1
# Book settings
2
# Learn more at https://jupyterbook.org/customize/config.html
3
4
title: Companion code for the book "Hands-On Mathematical Optimization with Python"
5
author: The MO Book Group
6
logo: media/cover.jpg
7
exclude_patterns:
8
- .DS_Store
9
- "**.ipynb_checkpoints"
10
- "**.pytest_cache"
11
- tools
12
- _build
13
- .git
14
- .github
15
- "**/__pycache__"
16
- "**/venv"
17
- "**/env"
18
- "**/.venv"
19
- "**/.env"
20
- "**/node_modules"
21
22
# Launch on Google Colab button
23
launch_buttons:
24
notebook_interface: "classic"
25
colab_url: "https://colab.research.google.com"
26
27
# only build files that appear in toc
28
only_build_toc_files: true
29
30
# Force re-execution of notebooks on each build.
31
# See https://jupyterbook.org/content/execute.html
32
execute:
33
execute_notebooks: off
34
35
# Define the name of the latex output file for PDF builds
36
latex:
37
latex_documents:
38
targetname: MO-book.tex
39
40
# Add a bibtex file so that we can create citations
41
bibtex_bibfiles:
42
- references.bib
43
44
# Information about where the book exists on the web
45
repository:
46
url: https://github.com/mobook/MO-book # Online location of your book
47
branch: main # Which branch of the repository should be used when creating links (optional)
48
49
# Add GitHub buttons to your book
50
# See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository
51
html:
52
use_issues_button: true
53
use_repository_button: true
54
use_multitoc_numbering: false
55
google_analytics_id: G-DVQ7NZ8CYZ
56
57
58