Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
restrepo
GitHub Repository: restrepo/ComputationalMethods
Path: blob/master/_config.yml
928 views
1
# Book settings
2
# Learn more at https://jupyterbook.org/customize/config.html
3
4
title: Computational Methods
5
author: Diego Restrepo (UdeA)
6
logo: logo.png
7
8
# Force re-execution of notebooks on each build.
9
# See https://jupyterbook.org/content/execute.html
10
execute:
11
execute_notebooks: 'off'
12
13
# Define the name of the latex output file for PDF builds
14
latex:
15
latex_documents:
16
targetname: book.tex
17
18
# Add a bibtex file so that we can create citations
19
bibtex_bibfiles:
20
- references.bib
21
22
# Information about where the book exists on the web
23
repository:
24
url: https://github.com/restrepo/ComputationalMethods # Online location of your book
25
path_to_book: docs # Optional path to your book, relative to the repository root
26
branch: master # Which branch of the repository should be used when creating links (optional)
27
28
# Add GitHub buttons to your book
29
# See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository
30
html:
31
use_issues_button: true
32
use_repository_button: true
33
34
only_build_toc_files: true
35
36
exclude_patterns: [Evaluacion*/*,material/node_modules/*,.trunk/*]
37
38
parse:
39
myst_enable_extensions:
40
# don't forget to list any other extensions you want enabled,
41
# including those that are enabled by default!
42
- amsmath
43
- dollarmath
44