version 0.1.0 #12

Merged
unexplrd merged 19 commits from unexplrd/typst_nure_template:main into 0.1.0 2025-03-18 12:28:55 +02:00
4 changed files with 147 additions and 76 deletions
Showing only changes of commit 63dbd82e4d - Show all commits

View File

@ -64,12 +64,24 @@ Some text
### Example Project Structure
```
project-folder/
├── main.typ
├── template.typ
├── images/
│ ├── figure1.png
│ ├── figure2.png
── ...
├── ...
project/
├── main.typ -- for importing, configuration and boilerplate
├── src/
├── intro.typ
│ ├── chapter1.typ
│ ├── chapter2.typ
── ...
├── figures/
│ ├── chapter1/
│ │ ├── figure1.png
│ │ ├── figure2.png
│ │ ├── figure3.png
│ │ └── ...
│ ├── chapter2/
│ │ ├── figure1.png
│ │ ├── figure2.png
│ │ ├── figure3.png
│ │ └── ...
│ └── ...
└── ...
```