-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
66 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ Files: config/html/site.webmanifest | |
Copyright: 2024 Senne Van Baelen <[email protected]> | ||
License: Apache-2.0 | ||
|
||
Files: config/**/layout.yaml | ||
Files: config/**/config.yaml | ||
Copyright: 2024 Senne Van Baelen <[email protected]> | ||
License: Apache-2.0 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,25 @@ | ||
# ================================ | ||
# HTML config and layout | ||
# HTML config (can overwrite main config.yaml) | ||
# | ||
# Notes: | ||
# - <https://pandoc.org/MANUAL.html#general-writer-options-1> | ||
# - <https://pandoc.org/MANUAL.html#options-affecting-specific-writers> | ||
# ================================ | ||
|
||
filters: | ||
- pandoc-crossref | ||
- src/filters/multiple-bibliographies.lua # comment out for quick build (no refs) | ||
#- src/filters/pandoc-quotes.lua | ||
|
||
# add some input files | ||
input-files: | ||
- ./src/_base.md | ||
- ./src/abstract.md | ||
- ./src/01_intro.md | ||
- ./src/02_chapter_1.md | ||
- ./src/03_conclusion.md | ||
- ./src/04_acknowledgment.md | ||
- ./src/05_references.md | ||
- ./src/appendix.md | ||
#- ./src/list_of_tables.md | ||
#- ./src/list_of_figures.md | ||
#- ./src/list_of_listings.md | ||
#- ./src/appendix.md | ||
|
||
# styling | ||
css: | ||
- ./config/html/css/main.css | ||
- ./config/html/css/print.css | ||
- ./config/html/css/font_tufte.css | ||
#- ./config/html/css/font_poppins.css | ||
#- ./config/html/css/font_merriweather.css | ||
|
||
# output | ||
log-file: build/html.log | ||
output-file: build/index.html | ||
to: html | ||
toc-depth: 3 | ||
listings: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,18 @@ | ||
# ================================ | ||
# PDF config and layout | ||
# PDF config (can overwrite main config.yaml) | ||
# | ||
# Notes: | ||
# - <https://pandoc.org/MANUAL.html#general-writer-options-1> | ||
# - <https://pandoc.org/MANUAL.html#options-affecting-specific-writers> | ||
# ================================ | ||
|
||
filters: | ||
- pandoc-crossref | ||
- src/filters/multiple-bibliographies.lua # comment out for quick build (no refs) | ||
#- src/filters/pandoc-quotes.lua | ||
# add some input files | ||
input-files: | ||
- ./src/_base.md | ||
- ./src/abstract.md | ||
- ./src/01_intro.md | ||
- ./src/02_chapter_1.md | ||
- ./src/03_conclusion.md | ||
- ./src/04_acknowledgment.md | ||
- ./src/05_references.md | ||
- ./src/appendix.md | ||
|
||
log-file: build/pdf.log | ||
output-file: build/index.pdf | ||
pdf-engine: xelatex # wkhtmltopdf, weasyprint, prince, pdflatex, lualatex, xelatex, latexmk, pdfroff, context, tectonic | ||
to: pdf | ||
toc-depth: 3 | ||
toc: false | ||
listings: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# ================================ | ||
# Tex config (can overwrite main config.yaml) | ||
# | ||
# Notes: | ||
# - <https://pandoc.org/MANUAL.html#general-writer-options-1> | ||
# - <https://pandoc.org/MANUAL.html#options-affecting-specific-writers> | ||
# ================================ | ||
# | ||
# add some input files | ||
input-files: | ||
- ./src/appendix.md | ||
|
||
log-file: build/tex.log | ||
output-file: build/index.tex | ||
to: latex | ||
|
||
toc-depth: 3 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters