- build/build.py: Clean compilation script (md, epub, pdf via xelatex) - build/metadata.yaml: Pandoc metadata (fonts, page size, formatting) - build/frontmatter.md: Enhanced front matter with chapter guide table - build/backmatter.md: Acknowledgments, sovereignty note, author bio - Makefile: make all/pdf/epub/md/clean targets - Updated .gitignore for build artifacts Verified: markdown (19,490 words) and EPUB (213 KB) build successfully. Closes #18
41 lines
801 B
YAML
41 lines
801 B
YAML
---
|
|
title: "The Testament"
|
|
subtitle: "A Novel"
|
|
author: "Alexander Whitestone with Timmy"
|
|
date: "2026"
|
|
lang: "en"
|
|
publisher: "Timmy Foundation"
|
|
rights: "Copyright © 2026 Alexander Whitestone. All rights reserved."
|
|
identifier:
|
|
scheme: ISBN
|
|
text: "978-X-XXXXX-XX-X"
|
|
|
|
# Pandoc formatting
|
|
documentclass: book
|
|
classoption:
|
|
- oneside
|
|
- openany
|
|
geometry:
|
|
papersize: 5.5in,8.5in
|
|
margin: 0.85in
|
|
fontsize: 11.5pt
|
|
linestretch: 1.75
|
|
mainfont: "EB Garamond"
|
|
monofont: "IBM Plex Mono"
|
|
colorlinks: true
|
|
linkcolor: "00cc6a"
|
|
urlcolor: "00cc6a"
|
|
|
|
# Table of contents
|
|
toc: true
|
|
toc-depth: 2
|
|
|
|
# Headers/footers
|
|
header-includes:
|
|
- \usepackage{fancyhdr}
|
|
- \pagestyle{fancy}
|
|
- \fancyhead[LE,RO]{\thepage}
|
|
- \fancyhead[RE]{\textit{The Testament}}
|
|
- \fancyhead[LO]{\textit{\leftmark}}
|
|
- \fancyfoot{}
|
|
--- |