| 12345678910111213141516 |
- \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:$A$}] at (2,2) {};
- \node (B)[point,label={[label distance=0cm]190:$B$}] 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, blue] (Q) edge node {} (A);
- \draw[very thick, blue] (Q) edge node {} (B);
- \draw[very thick] ($(P)!-1cm!(Q)$) -- ($(Q)!-1cm!(P)$);
- \end{tikzpicture}
|