@@ -30,3 +30,4 @@ in dem Erstellen dieses Skripts steckt:
|13.01.2014 | 19:00 - 00:00 | TODOs erledigen; Tippfehler korrigieren
|14.01.2014 | 11:15 - 12:45 | Digitalisieren der Vorlesung von 14.01.2014
|14.01.2014 | 12:45 - 12:40 | TikZ'en der Bilder aus Vorlesung von 14.01.2014
+|14.01.2014 | 13:00 - | TikZ'en der Bilder aus Vorlesung von 14.01.2014
@@ -29,6 +29,7 @@
\usepackage{tikz} % draw
\usepackage{tikz-3dplot} % draw
\usepackage{tkz-fct} % draw
+\usepackage{tkz-euclide} % draw
\usetikzlibrary{3d,calc,intersections,er,arrows,positioning,shapes.misc,patterns,fadings,decorations.pathreplacing}
\usepackage{tqft}
\usepackage{xspace} % for new commands; decides weather I want to insert a space after the command
@@ -263,8 +263,8 @@ aufgestellt.
\begin{figure}
\centering
- \includegraphics[width=0.5\linewidth, keepaspectratio]{figures/todo/bild-3.jpg}
- \caption{TODO}.
+ \input{figures/geometry-3.tex}
+ \caption{TODO}
\label{fig:bild-3}
\end{figure}
@@ -17,4 +17,8 @@
\draw[very thick] (C) edge node {} (A);
\draw[very thick] (Q) edge node {} (R);
+
+ \draw[very thick] ($(P)!-1cm!(Q)$) -- ($(Q)!-1cm!(P)$);
+ \draw[very thick] ($(A)!-0.3cm!(B)$) -- ($(B)!-1cm!(A)$);
+ \draw[very thick] ($(R)!-1cm!(Q)$) -- ($(Q)!-1cm!(R)$);
\end{tikzpicture}
@@ -8,6 +8,8 @@
\draw[very thick] (P) edge node {} (Q);
\draw[very thick, red] (P) edge node {} (A);
\draw[very thick, red] (P) edge node {} (B);
- \draw[very thick, green] (Q) edge node {} (A);
- \draw[very thick, green] (Q) edge node {} (B);
+ \draw[very thick, blue] (Q) edge node {} (A);
+ \draw[very thick, blue] (Q) edge node {} (B);
@@ -0,0 +1,17 @@
+\begin{tikzpicture}
+ \tkzSetUpPoint[shape=circle,size=10,color=black,fill=black]
+ \tkzSetUpLine[line width=1]
+ \tkzDefPoints{0/0/P, 4/0/Q, 1/0.5/B, 1/2/H}
+ \tkzInterLL(P,B)(Q,H) \tkzGetPoint{C}
+ \tkzDrawLine(P,H)
+ \tkzDrawLine(Q,H)
+ \tkzDrawLine(P,Q)
+ \tkzDrawLine[add=0 and 0.5](P,C)
+ \tkzDrawPoints(P,Q,B,C)
+ \tkzLabelPoint[below](P){$P$}
+ \tkzLabelPoint[below](Q){$Q$}
+ \tkzLabelPoint[below](B){$B$}
+ \tkzLabelPoint[below](C){$C$}
+\end{tikzpicture}
@@ -0,0 +1 @@
+this includes `tikz` and `tkz-euclide`
@@ -1,5 +1,6 @@
\documentclass[varwidth=true, border=2pt]{standalone}
\usepackage{tikz}
+\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}
@@ -21,5 +22,9 @@
\end{document}
@@ -12,7 +13,9 @@