2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-19 11:38:05 +02:00

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

This commit is contained in:
Martin Thoma 2012-08-16 18:17:49 +02:00
parent 5c57d6808a
commit ce91a805d9
4 changed files with 47 additions and 0 deletions

View file

@ -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

View file

@ -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}