mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
TikZed image
This commit is contained in:
parent
0177ad0048
commit
d8cced3a57
16 changed files with 165 additions and 2 deletions
|
@ -39,3 +39,4 @@ in dem Erstellen dieses Skripts steckt:
|
|||
|20.01.2014 | 20:00 - 20:15 | TikZ'en eines Bildes
|
||||
|21.01.2014 | 19:30 - 21:30 | Digitalisieren der Vorlesung von 21.01.2014
|
||||
|22.01.2014 | 06:00 - 06:30 | TikZ'en eines Bildes
|
||||
|22.01.2014 | 07:15 - 07:35 | TikZ'en eines Bildes
|
||||
|
|
Binary file not shown.
|
@ -610,8 +610,8 @@ Sei im Folgenden \enquote{IWS} die \enquote{Innenwinkelsumme}.
|
|||
|
||||
\begin{figure}
|
||||
\centering
|
||||
\input{figures/todo.tex}
|
||||
\caption{Bild 3}
|
||||
\input{figures/triangle-similar.tex}
|
||||
\caption{Die Dreiecke $\triangle ABC$ und $\triangle AB'C'$ sind ähnlich.}
|
||||
\label{fig:bild-3}
|
||||
\end{figure}
|
||||
|
||||
|
|
25
documents/GeoTopo/figures/triangle-similar.tex
Normal file
25
documents/GeoTopo/figures/triangle-similar.tex
Normal file
|
@ -0,0 +1,25 @@
|
|||
\begin{tikzpicture}
|
||||
\tkzSetUpPoint[shape=circle,size=10,color=black,fill=black]
|
||||
\tkzSetUpLine[line width=1]
|
||||
\tkzDefPoints{0/0/A, 3/0/B', 2/2/C, 4/4/C'}
|
||||
\tkzDefLine[parallel=through C](B',C') \tkzGetPoint{Phelper}
|
||||
\tkzInterLL(A,B')(C,Phelper) \tkzGetPoint{B}
|
||||
\tkzDrawLine[add=0 and 0.2](A,B')
|
||||
\tkzDrawLine[add=0 and 0.2](A,C')
|
||||
\tkzDrawSegment(B',C')
|
||||
|
||||
\node at ($(A)+(-0.1,-0.2)$) {$A$};
|
||||
\node at ($(B')+(0.2,-0.2)$) {$B'$}; % \tkzLabelPoint[below](B){$B$} is not accurate enough
|
||||
\node at ($(C')+(0,0.4)$) {$C'$};
|
||||
\node at ($(B)+(0.2,-0.2)$) {$B$};
|
||||
\node at ($(C)+(0.28,0.5)$) {$C$};
|
||||
\tkzDrawPolygon[ultra thick,color=blue,fill=blue!20](A,B',C')
|
||||
\tkzDrawPolygon[line width=0.3pt,color=red,fill=red!20](A,B,C)
|
||||
\tkzDrawPoints(A,B',C',B,C)
|
||||
\tkzLabelSegment[below,red](A,B){$c$}
|
||||
\tkzLabelSegment[left,red](A,C){$b$}
|
||||
\tkzLabelSegment[right,red](B,C){$a$}
|
||||
\tkzLabelSegment[below,blue,pos=0.8](A,B'){$c'$}
|
||||
\tkzLabelSegment[left,blue,pos=0.8](A,C'){$b'$}
|
||||
\tkzLabelSegment[right,blue](B',C'){$a'$}
|
||||
\end{tikzpicture}
|
Loading…
Add table
Add a link
Reference in a new issue