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

@ -53,7 +53,7 @@ us with a handful of methods to implement.
The following class diagram is a simplified picture of the reality,
but good enough for show what we have to implement.
#+BEGIN_SRC plantuml :file uml-kripke.png
#+BEGIN_SRC plantuml :file uml-kripke.svg
package spot {
together {
abstract class twa {
@ -132,7 +132,7 @@ kripke <|-- demo_kripke
#+END_SRC
#+RESULTS:
[[file:uml-kripke.png]]
[[file:uml-kripke.svg]]
** Implementing the =state= subclass
@ -388,12 +388,12 @@ this reason.
}
#+END_SRC
#+BEGIN_SRC dot :file kripke-1.png :cmdline -Tpng :cmd circo :var txt=demo-1 :exportss results
#+BEGIN_SRC dot :file kripke-1.svg :cmd circo :var txt=demo-1 :exports results
$txt
#+END_SRC
#+RESULTS:
[[file:kripke-1.png]]
q[[file:kripke-1.svg]]
* Checking a property on this state space
@ -520,12 +520,12 @@ passing the option "~k~" to =print_dot()= will fix that.
}
#+END_SRC
#+BEGIN_SRC dot :file kripke-3.png :cmdline -Tpng :cmd circo :var txt=demo-3 :exportss results
#+BEGIN_SRC dot :file kripke-3.svg :cmd circo :var txt=demo-3 :exports results
$txt
#+END_SRC
#+RESULTS:
[[file:kripke-3.png]]
[[file:kripke-3.svg]]
* Possible improvements