2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-28 23:37:57 +02:00

Bilder geTikZ't

This commit is contained in:
Martin Thoma 2014-01-14 13:41:12 +01:00
parent 743089ffff
commit 84d7dfd97d
15 changed files with 152 additions and 7 deletions

View file

@ -0,0 +1,13 @@
\begin{tikzpicture}
\tikzstyle{point}=[circle,thick,draw=black,fill=black,inner sep=0pt,minimum width=4pt,minimum height=4pt]
\node (P)[point,label={[label distance=0cm]-90:$P$}] at (0,0) {};
\node (Q)[point,label={[label distance=0cm]-90:$Q$}] at (5,1) {};
\node (A)[point,label={[label distance=0cm]180:$\varphi_1(R)$}] at (2,2) {};
\node (B)[point,label={[label distance=0cm]190:$\varphi_2(R)$}] at (1,3) {};
\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);
\end{tikzpicture}