diff --git a/documents/mathe-burdsch-chalifa/Burdsch-Chalifa.pdf b/documents/mathe-burdsch-chalifa/Burdsch-Chalifa.pdf deleted file mode 100644 index 3776601..0000000 Binary files a/documents/mathe-burdsch-chalifa/Burdsch-Chalifa.pdf and /dev/null differ diff --git a/tikz/jordan-normal-form-scheme-small/Makefile b/tikz/jordan-normal-form-scheme-small/Makefile new file mode 100644 index 0000000..943bd6b --- /dev/null +++ b/tikz/jordan-normal-form-scheme-small/Makefile @@ -0,0 +1,32 @@ +SOURCE = jordan-normal-form-scheme-small +DELAY = 80 +DENSITY = 300 +WIDTH = 300 + +make: + pdflatex $(SOURCE).tex -output-format=pdf + pdflatex $(SOURCE).tex -output-format=pdf + make clean + +clean: + rm -rf $(TARGET) *.class *.html *.log *.aux + +gif: + pdfcrop $(SOURCE).pdf + convert -verbose -delay $(DELAY) -loop 0 -density $(DENSITY) $(SOURCE)-crop.pdf $(SOURCE).gif + make clean + +png: + make + make svg + inkscape $(SOURCE).svg -w $(WIDTH) --export-png=$(SOURCE).png + +transparentGif: + convert $(SOURCE).pdf -transparent white result.gif + make clean + +svg: + #inkscape $(SOURCE).pdf --export-plain-svg=$(SOURCE).svg + pdf2svg $(SOURCE).pdf $(SOURCE).svg + # Necessary, as pdf2svg does not always create valid svgs: + inkscape $(SOURCE).svg --export-plain-svg=$(SOURCE).svg diff --git a/tikz/jordan-normal-form-scheme-small/jordan-normal-form-scheme-small.tex b/tikz/jordan-normal-form-scheme-small/jordan-normal-form-scheme-small.tex new file mode 100644 index 0000000..c82189e --- /dev/null +++ b/tikz/jordan-normal-form-scheme-small/jordan-normal-form-scheme-small.tex @@ -0,0 +1,15 @@ +\documentclass{article} +\usepackage[pdftex,active,tightpage]{preview} +\setlength\PreviewBorder{2mm} +\usepackage{tikz} +\usetikzlibrary{fit,matrix,positioning} + + +\begin{document} +\begin{preview} +\begin{tabular}[c]{c| c c} +$U_1$ & $b_1^1$ & \\ +$U_0$ & $\Omega(b_1^1)$ & $b_1^0$ +\end{tabular} +\end{preview} +\end{document} diff --git a/tikz/jordan-normal-form/jordan-normal-form.pdf b/tikz/jordan-normal-form/jordan-normal-form.pdf deleted file mode 100644 index a252b88..0000000 Binary files a/tikz/jordan-normal-form/jordan-normal-form.pdf and /dev/null differ