소스 검색

added small scheme for finding the transformation basis for jordan normal form

Martin Thoma 13 년 전
부모
커밋
ce91a805d9

BIN
documents/mathe-burdsch-chalifa/Burdsch-Chalifa.pdf


+ 32 - 0
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

+ 15 - 0
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}

BIN
tikz/jordan-normal-form/jordan-normal-form.pdf