org: convert all images to svg

Suggested in #299.

* doc/org/autfilt.org, doc/org/concepts.org, doc/org/dstar2tgba.org,
doc/org/genaut.org, doc/org/hierarchy.org, doc/org/hoa.org,
doc/org/ltl2tgba.org, doc/org/ltl2tgta.org, doc/org/ltlcross.org,
doc/org/oaut.org, doc/org/randaut.org, doc/org/satmin.org,
doc/org/tut11.org, doc/org/tut23.org, doc/org/tut24.org,
doc/org/tut30.org, doc/org/tut31.org, doc/org/tut50.org,
doc/org/tut51.org: Adjust all dot outputs to produce svg.
* doc/org/arch.tex, doc/org/hierarchy.tex, doc/org/satmin.tex: Adjust
to produce a pdf with 12pt text.
* doc/Makefile.am: Adjust the generation of arch.svg, hierarchy.svg,
and satmin.svg: From above.
* doc/org/.dir-locals.el.in, doc/org/init.el.in: Adjust dot arguments
to produce svg with 12pt text (the default was 14pt).
* doc/org/spot.css: Use Lato as the main font for consistency with
automata.
* HACKING: pdf2svg is now required to build the doc.
This commit is contained in:
Alexandre Duret-Lutz 2017-11-19 19:08:26 +01:00
parent 454cc73670
commit 61602a3bba
28 changed files with 290 additions and 274 deletions

View file

@ -77,7 +77,7 @@ ORG_FILES = \
org/init.el.in \
org/spot.css \
org/arch.tex \
$(srcdir)/org/arch.png \
$(srcdir)/org/arch.svg \
org/autcross.org \
org/autfilt.org \
org/csv.org \
@ -90,7 +90,7 @@ ORG_FILES = \
org/hoa.org \
org/hierarchy.org \
org/hierarchy.tex \
$(srcdir)/org/hierarchy.png \
$(srcdir)/org/hierarchy.svg \
org/index.org \
org/install.org \
org/ioltl.org \
@ -125,21 +125,24 @@ ORG_FILES = \
org/satmin.org \
org/satmin.tex \
org/setup.org \
$(srcdir)/org/satmin.png
$(srcdir)/org/satmin.svg
$(srcdir)/org/satmin.png: org/satmin.tex
$(srcdir)/org/satmin.svg: org/satmin.tex
cd $(srcdir)/org && \
pdflatex -shell-escape satmin.tex && \
pdflatex satmin.tex && \
pdf2svg satmin.pdf satmin.svg && \
rm -f satmin.pdf satmin.aux satmin.log
$(srcdir)/org/arch.png: org/arch.tex
$(srcdir)/org/arch.svg: org/arch.tex
cd $(srcdir)/org && \
pdflatex -shell-escape arch.tex && \
pdflatex arch.tex && \
pdf2svg arch.pdf arch.svg && \
rm -f arch.pdf arch.aux arch.log
$(srcdir)/org/hierarchy.png: org/hierarchy.tex
$(srcdir)/org/hierarchy.svg: org/hierarchy.tex
cd $(srcdir)/org && \
pdflatex -shell-escape hierarchy.tex && \
pdflatex hierarchy.tex && \
pdf2svg hierarchy.pdf hierarchy.svg && \
rm -f hierarchy.pdf hierarchy.aux hierarchy.log
$(srcdir)/org-stamp: $(ORG_FILES) $(configure_ac)