|
| 1 | +####################################################################################### |
| 2 | +# Book settings |
| 3 | +title: Jupyter Book |
| 4 | +author: The Jupyter Book Community |
| 5 | + |
| 6 | +description: >- # this means to ignore newlines until "baseurl:" |
| 7 | + This is an example book built with Jupyter Books. |
| 8 | +
|
| 9 | +baseurl: "" # the subpath of your site, e.g. /blog. If there is no subpath for your site, use an empty string "" |
| 10 | +url: "https://jupyterbook.org" # the base hostname & protocol for your site, e.g. http://example.com |
| 11 | +html_logo: images/logo.png |
| 12 | + |
| 13 | +####################################################################################### |
| 14 | +# Jupyter Book settings |
| 15 | + |
| 16 | +# Main page settings |
| 17 | +footer_text : This page was created by <a href="https://github.com/jupyter/jupyter-book/graphs/contributors">The Jupyter Book Community</a> |
| 18 | + |
| 19 | +# Sidebar settings |
| 20 | +show_sidebar : true # Show the sidebar. Only set to false if your only wish to host a single page. |
| 21 | +collapse_inactive_chapters: true # Whether to collapse the inactive chapters in the sidebar |
| 22 | +collapse_inactive_sections: true # Whether to collapse the sub-sections within a non-active section in the sidebar |
| 23 | +textbook_logo : images/logo/logo.png # A logo to be displayed at the top of your textbook sidebar. Should be square |
| 24 | +textbook_logo_link : https://jupyterbook.org/intro.html # A link for the logo. |
| 25 | +sidebar_footer_text : 'Powered by <a href="https://jupyterbook.org">Jupyter Book</a>' |
| 26 | +number_toc_chapters : true # Whether to add numbers to chapterse in your Table of Contents. If true, you can control this at the Chapter level in _data/toc.yml |
| 27 | + |
| 28 | +# Search settings |
| 29 | +search_max_words_in_content : 100 # In the search function, use at most this many words (too many words will make search slow) |
| 30 | + |
| 31 | +# Controlling page information |
| 32 | +page_titles : infer # Either `None`, `infer`, or `toc` |
| 33 | +page_authors : None # Either `None` or `infer` |
| 34 | +filename_title_split_character : '_' # If inferring titles based on filename, splt on this character. |
| 35 | + |
| 36 | +# Math settings |
| 37 | +number_equations : false # Whether to automatically number all block equations with MathJax |
| 38 | + |
| 39 | +####################################################################################### |
| 40 | +# Interact link settings |
| 41 | + |
| 42 | +# General interact settings |
| 43 | +use_jupyterlab : false # If 'true', interact links will use JupyterLab as the interface |
| 44 | + |
| 45 | +# Jupyterhub link settings |
| 46 | +use_jupyterhub_button : false # If 'true', display a button that will direct users to a JupyterHub (that you provide) |
| 47 | +jupyterhub_url : "" # The URL for your JupyterHub. If no URL, use "" |
| 48 | +jupyterhub_interact_text : "Interact" # The text that interact buttons will contain. |
| 49 | + |
| 50 | +# Binder link settings |
| 51 | +use_binder_button : true # If 'true', add a binder button for interactive links |
| 52 | +binderhub_url : "https://mybinder.org" # The URL for your BinderHub. If no URL, use "" |
| 53 | +binder_repo_base : "https://github.com/" # The site on which the textbook repository is hosted |
| 54 | +binder_repo_org : "jupyter" # The username or organization that owns this repository |
| 55 | +binder_repo_name : "jupyter-book" # The name of the repository on the web |
| 56 | +binder_repo_branch : "gh-pages" # The branch on which your textbook is hosted. |
| 57 | +binderhub_interact_text : "Interact" # The text that interact buttons will contain. |
| 58 | + |
| 59 | +# Thebelab settings |
| 60 | +use_thebelab_button : true # If 'true', display a button to allow in-page running code cells with Thebelab |
| 61 | +thebelab_button_text : "Thebelab" # The text to display inside the Thebelab initialization button |
| 62 | +codemirror_theme : "abcdef" # Theme for codemirror cells, for options see https://codemirror.net/doc/manual.html#config |
| 63 | + |
| 64 | +# nbinteract settings |
| 65 | +use_show_widgets_button : true # If 'true', display a button to allow in-page running code cells with nbinteract |
| 66 | + |
| 67 | +# Download settings |
| 68 | +use_download_button : true # If 'true', display a button to download a zip file for the notebook |
| 69 | +download_button_text : "Download" # The text that download buttons will contain |
| 70 | +download_page_header : "Made with Jupyter Book" # A header that will be displayed at the top of and PDF-printed page |
| 71 | + |
| 72 | +####################################################################################### |
| 73 | +# Jupyter book extensions and additional features |
| 74 | + |
| 75 | +# Bibliography and citation settings. See https://github.com/inukshuk/jekyll-scholar#configuration for options |
| 76 | +scholar: |
| 77 | + style: apa |
| 78 | + |
| 79 | +####################################################################################### |
| 80 | +# Option to add a Goggle analytics tracking code |
| 81 | + |
| 82 | +# Navigate to https://analytics.google.com, add a new property for your jupyter book and copy the tracking id here. |
| 83 | +google_analytics: |
| 84 | + mytrackingcode: UA-52617120-7 |
0 commit comments