From 3752410bb3c24fc2232e5f0c11e8ed1e73d754b8 Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Sun, 12 Dec 2021 17:05:16 +0100 Subject: Create SVG from Tikz pictures --- doc/poster/pictures/Makefile | 13 +++ doc/poster/pictures/sketch.svg | 203 +++++++++++++++++++++++++++++++++++++++++ doc/poster/pictures/sketch.tex | 23 +++++ doc/poster/pictures/tikz | 1 + 4 files changed, 240 insertions(+) create mode 100644 doc/poster/pictures/Makefile create mode 100644 doc/poster/pictures/sketch.svg create mode 100644 doc/poster/pictures/sketch.tex create mode 120000 doc/poster/pictures/tikz (limited to 'doc') diff --git a/doc/poster/pictures/Makefile b/doc/poster/pictures/Makefile new file mode 100644 index 0000000..ed62513 --- /dev/null +++ b/doc/poster/pictures/Makefile @@ -0,0 +1,13 @@ +PICS := sketch.svg + +all: $(PICS) + +%.pdf: %.tex + xelatex $< + +%.svg: %.pdf + pdftocairo -svg $< $@ + +.PHONY: clean +clean: + rm $(PICS) *.pdf *.log *.aux diff --git a/doc/poster/pictures/sketch.svg b/doc/poster/pictures/sketch.svg new file mode 100644 index 0000000..ebb95a1 --- /dev/null +++ b/doc/poster/pictures/sketch.svg @@ -0,0 +1,203 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/poster/pictures/sketch.tex b/doc/poster/pictures/sketch.tex new file mode 100644 index 0000000..44bb5ff --- /dev/null +++ b/doc/poster/pictures/sketch.tex @@ -0,0 +1,23 @@ +\documentclass[tikz]{standalone} + +\usepackage{tikz} % Pretty drawings +\usepackage{tikz-3dplot} % More dimensions! +\usetikzlibrary{ + external, + calc, + positioning, + backgrounds, + decorations.pathreplacing, + calligraphy, + decorations.markings, + matrix, + arrows, + patterns, +} +\pgfdeclarelayer{background} +\pgfdeclarelayer{foreground} +\pgfsetlayers{background,main,foreground} + +\begin{document} +\include{tikz/multipath-sketch.tex} +\end{document} diff --git a/doc/poster/pictures/tikz b/doc/poster/pictures/tikz new file mode 120000 index 0000000..74c9f25 --- /dev/null +++ b/doc/poster/pictures/tikz @@ -0,0 +1 @@ +../../thesis/figures/tikz/ \ No newline at end of file -- cgit v1.2.1