# Book settings1# Learn more at https://jupyterbook.org/customize/config.html23title: Computational Methods4author: Diego Restrepo (UdeA)5logo: logo.png67# Force re-execution of notebooks on each build.8# See https://jupyterbook.org/content/execute.html9execute:10execute_notebooks: 'off'1112# Define the name of the latex output file for PDF builds13latex:14latex_documents:15targetname: book.tex1617# Add a bibtex file so that we can create citations18bibtex_bibfiles:19- references.bib2021# Information about where the book exists on the web22repository:23url: https://github.com/restrepo/ComputationalMethods # Online location of your book24path_to_book: docs # Optional path to your book, relative to the repository root25branch: master # Which branch of the repository should be used when creating links (optional)2627# Add GitHub buttons to your book28# See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository29html:30use_issues_button: true31use_repository_button: true3233only_build_toc_files: true3435exclude_patterns: [Evaluacion*/*,material/node_modules/*,.trunk/*]3637parse:38myst_enable_extensions:39# don't forget to list any other extensions you want enabled,40# including those that are enabled by default!41- amsmath42- dollarmath4344