Change build setup to build one language at a time

This commit is contained in:
Kai Vogelgesang 2025-09-19 23:22:31 +02:00
parent 50239a4d90
commit 916c9e60e4
No known key found for this signature in database
GPG Key ID: B51995F56510D27C
3 changed files with 17 additions and 10 deletions

View File

@ -6,6 +6,7 @@ author: the TCLab Team
copyright: "2025" copyright: "2025"
logo: tclab.png logo: tclab.png
exclude_patterns: ["_build", ".venv", "*.ipynb_checkpoints", ".pipenv"] exclude_patterns: ["_build", ".venv", "*.ipynb_checkpoints", ".pipenv"]
only_build_toc_files: true
# Force re-execution of notebooks on each build. # Force re-execution of notebooks on each build.
# See https://jupyterbook.org/content/execute.html # See https://jupyterbook.org/content/execute.html

15
_toc.de.yml Normal file
View File

@ -0,0 +1,15 @@
# Table of contents
# Learn more at https://jupyterbook.org/customize/toc.html
format: jb-book
root: U00_Intro
chapters:
- file: U01_DSP_Basics
- file: U02_Project
sections:
- file: U02_1_Input
- file: U02_2_Freq_Shift
- file: U02_3_Low_Pass
- file: U02_4_Sync
- file: U02_5_Output

View File

@ -2,22 +2,13 @@
# Learn more at https://jupyterbook.org/customize/toc.html # Learn more at https://jupyterbook.org/customize/toc.html
format: jb-book format: jb-book
root: U00_Intro root: U00_Intro.en
chapters: chapters:
- file: U00_Intro.en
- file: U01_DSP_Basics
- file: U01_DSP_Basics.en - file: U01_DSP_Basics.en
- file: U02_Project
- file: U02_Project.en - file: U02_Project.en
sections: sections:
- file: U02_1_Input
- file: U02_1_Input.en - file: U02_1_Input.en
- file: U02_2_Freq_Shift
- file: U02_2_Freq_Shift.en - file: U02_2_Freq_Shift.en
- file: U02_3_Low_Pass
- file: U02_3_Low_Pass.en - file: U02_3_Low_Pass.en
- file: U02_4_Sync
- file: U02_4_Sync.en - file: U02_4_Sync.en
- file: U02_5_Output
- file: U02_5_Output.en - file: U02_5_Output.en