Sphinx HTML and 17-page LaTeX PDF for the audit-ready pack
Some checks are pending
ci / markdown (push) Waiting to run

source/ is the Sphinx tree. Companion PDF hrefs are relative, not Markdown.
This commit is contained in:
George Lambert 2026-09-15 23:59:54 -04:00
parent afa270a141
commit da60402e88
104 changed files with 16818 additions and 0 deletions

24
source/conf.py Normal file
View file

@ -0,0 +1,24 @@
project = "Making yourself audit-ready with Verae DataCubes"
copyright = "2026, Verae"
author = "Verae / George Lambert"
extensions = []
templates_path = ["_templates"]
exclude_patterns = []
html_theme = "alabaster"
html_static_path = ["_static"]
html_title = project
latex_engine = "pdflatex"
latex_documents = [
(
"index",
"peergos-making-yourself-audit-ready-with-verae-datacubes.tex",
"Making yourself audit-ready with Verae DataCubes",
"Verae",
"manual",
),
]
latex_elements = {
"papersize": "letterpaper",
"pointsize": "11pt",
"preamble": r"\usepackage{hyperref}",
}