Build system for The Testament: - build/build.py: compiles chapters to PDF, EPUB, MD - build/metadata.yaml: book metadata - build/frontmatter.md: title page, dedication - build/backmatter.md: acknowledgments, sovereignty note - Makefile: make pdf, make epub, make md - .gitignore: build artifacts
36 lines
836 B
YAML
36 lines
836 B
YAML
---
|
|
title: "The Testament"
|
|
subtitle: "A Novel About Broken Men, Sovereign AI, and the Soul on Bitcoin"
|
|
author: "Rockachopa"
|
|
date: "2026"
|
|
rights: "Open Source — Inscribed on Bitcoin, Sovereign Forever"
|
|
lang: en
|
|
toc: true
|
|
toc-depth: 2
|
|
numbersections: true
|
|
documentclass: book
|
|
classoption:
|
|
- openany
|
|
- oneside
|
|
geometry:
|
|
- paper=6in
|
|
- top=1in
|
|
- bottom=1in
|
|
- left=1in
|
|
- right=1in
|
|
fontsize: 11pt
|
|
linestretch: 1.4
|
|
header-includes:
|
|
- \usepackage{fancyhdr}
|
|
- \pagestyle{fancy}
|
|
- \fancyhead[LE,RO]{\thepage}
|
|
- \fancyhead[RE]{\textit{The Testament}}
|
|
- \fancyhead[LO]{\textit{\leftmark}}
|
|
- \fancyfoot{}
|
|
- \usepackage{enumitem}
|
|
- \setlist{nosep}
|
|
- \usepackage{titlesec}
|
|
- \titleformat{\chapter}[display]{\normalfont\huge\bfseries}{Part~\thechapter}{20pt}{\Huge}
|
|
- \titlespacing*{\chapter}{0pt}{-30pt}{40pt}
|
|
---
|