41 lines
965 B
YAML
41 lines
965 B
YAML
# pandoc.yaml
|
|
input-files:
|
|
- chapters/00_Introduction.md
|
|
- chapters/01_Getting_Started.md
|
|
- chapters/02_Features.md
|
|
- chapters/Terminology.md
|
|
- chapters/Citations.md
|
|
|
|
from: markdown+yaml_metadata_block+raw_tex
|
|
standalone: true
|
|
|
|
|
|
metadata:
|
|
mainfont: "Linux Libertine O"
|
|
sansfont: "Linux Biolinum O"
|
|
monofont: "DejaVu Sans Mono"
|
|
date: "" # <-- forces maketitle to exist, but blank
|
|
link-citations: true
|
|
|
|
variables:
|
|
documentclass: article # set to "article" or "book"
|
|
suppress-chapter: true
|
|
fontsize: 12pt
|
|
geometry:
|
|
- margin=1in
|
|
toc: true # ✅ Pandoc-recognized variable
|
|
toc-depth: 3 # ✅ nested inside variables
|
|
toc-title: "Contents" # ✅ controls TOC heading
|
|
numbersections: true # ✅ correct key (not number-sections)
|
|
colorlinks: true # nice PDF hyperlinks
|
|
linkcolor: blue
|
|
|
|
resource-path:
|
|
- .
|
|
- lib/img
|
|
|
|
citeproc: true
|
|
bibliography: lib/zotero.bib
|
|
|
|
|