mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-19 11:38:05 +02:00
images TikZ-ified
This commit is contained in:
parent
5d76d15a6b
commit
724487a1d7
15 changed files with 123 additions and 3 deletions
|
@ -10,4 +10,4 @@ Datum | Uhrzeit
|
|||
14.12.2013 | 13:00 - 14:45
|
||||
15.12.2013 | 20:30 - 21:20
|
||||
16.12.2013 | 15:00 - 15:30
|
||||
17.12.2013 | 07:30 - 07:45, 14:30 - 15:40
|
||||
17.12.2013 | 07:30 - 07:45, 14:30 - 15:40, 16:30 -
|
||||
|
|
Binary file not shown.
|
@ -145,12 +145,12 @@
|
|||
\begin{figure}[ht]
|
||||
\centering
|
||||
\subfloat[$\gamma_1 * (\gamma_2 * \gamma_3)$]{
|
||||
\includegraphics[width=0.5\linewidth, keepaspectratio]{figures/todo/zusammensetzen-von-wegen-nicht-assoziativ-1.jpg}
|
||||
\input{figures/topology-path-not-associative-1.tex}
|
||||
\label{fig:assotiativitaet-von-wegen-a}
|
||||
}
|
||||
|
||||
\subfloat[$(\gamma_1 * \gamma_2) * \gamma_3$]{
|
||||
\includegraphics[width=0.5\linewidth, keepaspectratio]{figures/todo/zusammensetzen-von-wegen-nicht-assoziativ-2.jpg}
|
||||
\input{figures/topology-path-not-associative-2.tex}
|
||||
\label{fig:assotiativitaet-von-wegen-b}
|
||||
}%
|
||||
\label{fig:assoziativitaet-von-wegen}
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 80 KiB |
Binary file not shown.
Before Width: | Height: | Size: 77 KiB |
|
@ -0,0 +1,10 @@
|
|||
\begin{tikzpicture}
|
||||
\draw[very thick,red] (0,0) -- (5,0) node [midway, below] {$\gamma_1$};
|
||||
\draw[very thick,green](5,0) -- (7.5,0) node [midway, below] {$\gamma_2$};
|
||||
\draw[very thick,blue] (7.5,0) -- (10,0) node [midway, below] {$\gamma_3$};
|
||||
|
||||
\draw[thick] (0,0.2) -- ( 0,-0.2) node[label=below:$0$] {};
|
||||
\draw[thick] (5,0.2) -- ( 5,-0.2) node[label=below:$\nicefrac{1}{2}$] {};
|
||||
\draw[thick] (7.5,0.2) -- (7.5,-0.2) node[label=below:$\nicefrac{3}{4}$] {};
|
||||
\draw[thick] (10,0.2) -- ( 10,-0.2) node[label=below:$1$] {};
|
||||
\end{tikzpicture}
|
|
@ -0,0 +1,10 @@
|
|||
\begin{tikzpicture}
|
||||
\draw[very thick,red] (0,0) -- (2.5,0) node [midway, below] {$\gamma_1$};
|
||||
\draw[very thick,green](2.5,0) -- (5,0) node [midway, below] {$\gamma_2$};
|
||||
\draw[very thick,blue] (5,0) -- (10,0) node [midway, below] {$\gamma_3$};
|
||||
|
||||
\draw[thick] (0,0.2) -- ( 0,-0.2) node[label=below:$0$] {};
|
||||
\draw[thick] (2.5,0.2) -- (2.5,-0.2) node[label=below:$\nicefrac{1}{4}$] {};
|
||||
\draw[thick] (5.0,0.2) -- (5.0,-0.2) node[label=below:$\nicefrac{1}{2}$] {};
|
||||
\draw[thick] (10,0.2) -- ( 10,-0.2) node[label=below:$1$] {};
|
||||
\end{tikzpicture}
|
31
tikz/topology-path-not-associative-1/Makefile
Normal file
31
tikz/topology-path-not-associative-1/Makefile
Normal file
|
@ -0,0 +1,31 @@
|
|||
SOURCE = topology-path-not-associative-1
|
||||
DELAY = 80
|
||||
DENSITY = 300
|
||||
WIDTH = 512
|
||||
|
||||
make:
|
||||
pdflatex $(SOURCE).tex -output-format=pdf
|
||||
make clean
|
||||
|
||||
clean:
|
||||
rm -rf $(TARGET) *.class *.html *.log *.aux *.data *.gnuplot
|
||||
|
||||
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
|
3
tikz/topology-path-not-associative-1/Readme.md
Normal file
3
tikz/topology-path-not-associative-1/Readme.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
Compiled example
|
||||
----------------
|
||||

|
Binary file not shown.
After Width: | Height: | Size: 2.5 KiB |
|
@ -0,0 +1,16 @@
|
|||
\documentclass[varwidth=true, border=2pt]{standalone}
|
||||
\usepackage{tikz}
|
||||
\usepackage{nicefrac}
|
||||
|
||||
\begin{document}
|
||||
\begin{tikzpicture}
|
||||
\draw[very thick,red] (0,0) -- (5,0) node [midway, below] {$\gamma_1$};
|
||||
\draw[very thick,green](5,0) -- (7.5,0) node [midway, below] {$\gamma_2$};
|
||||
\draw[very thick,blue] (7.5,0) -- (10,0) node [midway, below] {$\gamma_3$};
|
||||
|
||||
\draw[thick] (0,0.2) -- ( 0,-0.2) node[label=below:$0$] {};
|
||||
\draw[thick] (5,0.2) -- ( 5,-0.2) node[label=below:$\nicefrac{1}{2}$] {};
|
||||
\draw[thick] (7.5,0.2) -- (7.5,-0.2) node[label=below:$\nicefrac{3}{4}$] {};
|
||||
\draw[thick] (10,0.2) -- ( 10,-0.2) node[label=below:$1$] {};
|
||||
\end{tikzpicture}
|
||||
\end{document}
|
31
tikz/topology-path-not-associative-2/Makefile
Normal file
31
tikz/topology-path-not-associative-2/Makefile
Normal file
|
@ -0,0 +1,31 @@
|
|||
SOURCE = topology-path-not-associative-2
|
||||
DELAY = 80
|
||||
DENSITY = 300
|
||||
WIDTH = 512
|
||||
|
||||
make:
|
||||
pdflatex $(SOURCE).tex -output-format=pdf
|
||||
make clean
|
||||
|
||||
clean:
|
||||
rm -rf $(TARGET) *.class *.html *.log *.aux *.data *.gnuplot
|
||||
|
||||
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
|
3
tikz/topology-path-not-associative-2/Readme.md
Normal file
3
tikz/topology-path-not-associative-2/Readme.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
Compiled example
|
||||
----------------
|
||||

|
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
|
@ -0,0 +1,16 @@
|
|||
\documentclass[varwidth=true, border=2pt]{standalone}
|
||||
\usepackage{tikz}
|
||||
\usepackage{nicefrac}
|
||||
|
||||
\begin{document}
|
||||
\begin{tikzpicture}
|
||||
\draw[very thick,red] (0,0) -- (2.5,0) node [midway, below] {$\gamma_1$};
|
||||
\draw[very thick,green](2.5,0) -- (5,0) node [midway, below] {$\gamma_2$};
|
||||
\draw[very thick,blue] (5,0) -- (10,0) node [midway, below] {$\gamma_3$};
|
||||
|
||||
\draw[thick] (0,0.2) -- ( 0,-0.2) node[label=below:$0$] {};
|
||||
\draw[thick] (2.5,0.2) -- (2.5,-0.2) node[label=below:$\nicefrac{1}{4}$] {};
|
||||
\draw[thick] (5.0,0.2) -- (5.0,-0.2) node[label=below:$\nicefrac{1}{2}$] {};
|
||||
\draw[thick] (10,0.2) -- ( 10,-0.2) node[label=below:$1$] {};
|
||||
\end{tikzpicture}
|
||||
\end{document}
|
Loading…
Add table
Add a link
Reference in a new issue