Sphinx HTML and 17-page LaTeX PDF for the audit-ready pack
Some checks are pending
ci / markdown (push) Waiting to run
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:
parent
afa270a141
commit
da60402e88
104 changed files with 16818 additions and 0 deletions
12
Makefile
Normal file
12
Makefile
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
SPHINXBUILD ?= sphinx-build
|
||||
SOURCEDIR = source
|
||||
BUILDDIR = build
|
||||
PDFNAME = peergos-making-yourself-audit-ready-with-verae-datacubes
|
||||
|
||||
.PHONY: html latexpdf all
|
||||
html:
|
||||
$(SPHINXBUILD) -b html "$(SOURCEDIR)" "$(BUILDDIR)/html"
|
||||
latexpdf:
|
||||
$(SPHINXBUILD) -b latex "$(SOURCEDIR)" "$(BUILDDIR)/latex"
|
||||
cd "$(BUILDDIR)/latex" && pdflatex -interaction=nonstopmode $(PDFNAME).tex && pdflatex -interaction=nonstopmode $(PDFNAME).tex
|
||||
all: html latexpdf
|
||||
Loading…
Add table
Add a link
Reference in a new issue