From ca5729abf4c9c0b2d2f95b6e6cfd591504881981 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Tue, 9 May 2023 20:17:15 -0500 Subject: [PATCH] Make pdf generation work --- .gitignore | 3 +++ Makefile | 12 +++++++++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2ceccae..96bf4b4 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,6 @@ doc/sphinx-venv/ # A generated requirements.txt file doc/requirements.txt.new + +# The generated pdf +sokwedbtechnical.pdf diff --git a/Makefile b/Makefile index 492999b..3c5d8f0 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,7 @@ endif # Variables # PREFIX := doc -PDF_NAME := sokwedb_technical.pdf +PDF_NAME := sokwedbtechnical.pdf EMACS_BK_CHR := ~ # Website location in file system @@ -307,12 +307,18 @@ $(LATEX_DIRS) $(HTML_DIRS) $(HTML_SRCDIR) $(LATEX_SRCDIR) \ # The file we want for a pdf $(PDF_TARGET): $(SPHINX_PDF_TARGET) - cp $(PREFIX)/build/latex/$(PDF_TARGET) $(PDF_TARGET) + cp $(SPHINX_PREFIX)/build/latex/$(PDF_TARGET) $(PDF_TARGET) # The file sphinx builds for a pdf +# It is unclear whether it's a good idea to run latexmk ourselves +# or whether we should try to use the sphinx auto-generated Makefile +# to do it, and try to keep the auto-generated Makefile under revision control. +# This seems simplest. $(SPHINX_PDF_TARGET): latex_rst $(PNG_FILES) $(LATEX_EPILOG) - $(SPHINXBUILD) -t latex_epilog -b latexpdf \ + $(SPHINXBUILD) -t latex_epilog -b latex \ $(LATEX_SRCDIR) $(SPHINX_BUILT_LATEX) + cd $(SPHINX_BUILT_LATEX) \ + && latexmk -pdf -dvi- -ps- $(patsubst %.pdf,%.tex,$(PDF_TARGET)) # The rst_epilogs of conf.py. -- 2.34.1