|
| 1 | +# Book settings |
| 2 | +# Learn more at https://jupyterbook.org/customize/config.html |
| 3 | +# Comprehensive example: https://github.com/executablebooks/jupyter-book/blob/master/docs/_config.yml |
| 4 | + |
| 5 | +title: PyPantograph |
| 6 | +author: Leni Aniva |
| 7 | +#logo: logo.png |
| 8 | + |
| 9 | +# Force re-execution of notebooks on each build. |
| 10 | +# See https://jupyterbook.org/content/execute.html |
| 11 | +execute: |
| 12 | + execute_notebooks: force |
| 13 | + |
| 14 | +# Define the name of the latex output file for PDF builds |
| 15 | +latex: |
| 16 | + latex_documents: |
| 17 | + targetname: book.tex |
| 18 | + |
| 19 | +# Add a bibtex file so that we can create citations |
| 20 | +#bibtex_bibfiles: |
| 21 | +# - references.bib |
| 22 | + |
| 23 | +# Information about where the book exists on the web |
| 24 | +repository: |
| 25 | + url: https://github.com/lenianiva/PyPantograph # Online location of your book |
| 26 | + path_to_book: docs # Optional path to your book, relative to the repository root |
| 27 | + branch: main # Which branch of the repository should be used when creating links (optional) |
| 28 | + |
| 29 | +# Add GitHub buttons to your book |
| 30 | +# See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository |
| 31 | +html: |
| 32 | + use_issues_button: true |
| 33 | + use_repository_button: true |
| 34 | + |
| 35 | +sphinx: |
| 36 | + config: |
| 37 | + intersphinx_mapping: |
| 38 | + ebp: |
| 39 | + - "https://executablebooks.org/en/latest/" |
| 40 | + - null |
| 41 | + myst-parser: |
| 42 | + - "https://myst-parser.readthedocs.io/en/latest/" |
| 43 | + - null |
| 44 | + myst-nb: |
| 45 | + - "https://myst-nb.readthedocs.io/en/latest/" |
| 46 | + - null |
| 47 | + sphinx: |
| 48 | + - "https://www.sphinx-doc.org/en/master" |
| 49 | + - null |
| 50 | + nbformat: |
| 51 | + - "https://nbformat.readthedocs.io/en/latest" |
| 52 | + - null |
| 53 | + sd: |
| 54 | + - "https://sphinx-design.readthedocs.io/en/latest" |
| 55 | + - null |
| 56 | + sphinxproof: |
| 57 | + - "https://sphinx-proof.readthedocs.io/en/latest/" |
| 58 | + - null |
| 59 | + hoverxref_intersphinx: |
| 60 | + - "sphinxproof" |
| 61 | + mathjax3_config: |
| 62 | + tex: |
| 63 | + macros: |
| 64 | + "N": "\\mathbb{N}" |
| 65 | + "floor": ["\\lfloor#1\\rfloor", 1] |
| 66 | + "bmat": ["\\left[\\begin{array}"] |
| 67 | + "emat": ["\\end{array}\\right]"] |
| 68 | + |
| 69 | + extra_extensions: |
| 70 | + - sphinx.ext.intersphinx |
| 71 | + - sphinx.ext.autodoc |
0 commit comments