|
| 1 | +####################################################################################### |
| 2 | +# A default configuration that will be loaded for all jupyter books |
| 3 | +# Users are expected to override these values in their own `_config.yml` file. |
| 4 | +# This is also the "master list" of all allowed keys and values. |
| 5 | + |
| 6 | +####################################################################################### |
| 7 | +# Book settings |
| 8 | +title : "Multi-Echo fMRI Data Analysis" # The title of the book. Will be placed in the left navbar. |
| 9 | +author : "The tedana community" # The author of the book |
| 10 | +copyright : "2021" # Copyright year to be placed in the footer |
| 11 | +logo : "logo.png" # A path to the book logo |
| 12 | +exclude_patterns : ["README.md", "content/*.py", "docs/**", "meda/**", ".venv/**", "data/ds*/logs/*.md", "data/ds*/*.md", "content/ds*/logs/*.md", "notebooks/README_notebooks.md", "notebooks/*.ipynb"] |
| 13 | + |
| 14 | +####################################################################################### |
| 15 | +# Execution settings |
| 16 | +execute: |
| 17 | + execute_notebooks : "auto" # Whether to execute notebooks at build time. Must be one of ("auto", "force", "cache", "off") |
| 18 | + cache : "" # A path to the jupyter cache that will be used to store execution artifacs. Defaults to `_build/.jupyter_cache/` |
| 19 | + exclude_patterns : [] # A list of patterns to *skip* in execution (e.g. a notebook that takes a really long time) |
| 20 | + timeout : -1 # remove restriction on execution time |
| 21 | + |
| 22 | +####################################################################################### |
| 23 | +# HTML-specific settings |
| 24 | +html: |
| 25 | + favicon : "" # A path to a favicon image |
| 26 | + use_edit_page_button : false # Whether to add an "edit this page" button to pages. If `true`, repository information in repository: must be filled in |
| 27 | + use_repository_button : true # Whether to add a link to your repository button |
| 28 | + use_issues_button : true # Whether to add an "open an issue" button |
| 29 | + extra_navbar : Powered by <a href="https://jupyterbook.org">Jupyter Book</a> # Will be displayed underneath the left navbar. |
| 30 | + extra_footer : "" # Will be displayed underneath the footer. |
| 31 | + analytics: |
| 32 | + google_analytics_id : "" # A GA id that can be used to track book views. |
| 33 | + home_page_in_navbar : true # Whether to include your home page in the left Navigation Bar |
| 34 | + baseurl : "" # The base URL where your book will be hosted. Used for creating image previews and social links. e.g.: https://mypage.com/mybook/ |
| 35 | + comments: |
| 36 | + hypothesis : true |
| 37 | + |
| 38 | +####################################################################################### |
| 39 | +# LaTeX-specific settings |
| 40 | +latex: |
| 41 | + latex_engine : pdflatex # one of 'pdflatex', 'xelatex' (recommended for unicode), 'luatex', 'platex', 'uplatex' |
| 42 | + use_jupyterbook_latex : true # use sphinx-jupyterbook-latex for pdf builds as default |
| 43 | + |
| 44 | +####################################################################################### |
| 45 | +# Launch button settings |
| 46 | +launch_buttons: |
| 47 | + notebook_interface : classic # The interface interactive links will activate ["classic", "jupyterlab"] |
| 48 | + binderhub_url : https://mybinder.org # The URL of the BinderHub (e.g., https://mybinder.org) |
| 49 | + thebe : false # Add a thebe button to pages (requires the repository to run on Binder) |
| 50 | + |
| 51 | +repository: |
| 52 | + url : https://github.com/ME-ICA/multi-echo-data-analysis # The URL to your book's repository |
| 53 | + path_to_book : "content" # A path to your book's folder, relative to the repository root. |
| 54 | + branch : "main" # Which branch of the repository should be used when creating links |
| 55 | + |
| 56 | +####################################################################################### |
| 57 | +# Additional configuration info |
| 58 | +bibtex_bibfiles: |
| 59 | + - content/references.bib |
| 60 | +sphinx: |
| 61 | + extra_extensions: |
| 62 | + - sphinx_inline_tabs |
| 63 | + - sphinx_jupyterbook_latex |
| 64 | + - sphinx_proof |
| 65 | + - sphinxcontrib.bibtex |
| 66 | + config: |
| 67 | + bibtex_reference_style: author_year |
| 68 | + bibtex_default_style: unsrt |
| 69 | + html_js_files: |
| 70 | + - https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js |
| 71 | + intersphinx_mapping: |
| 72 | + tedana: |
| 73 | + - "https://tedana.readthedocs.io/en/0.0.11/" |
| 74 | + - null |
| 75 | + language: en |
0 commit comments