![Dibujar la bisectriz de un ángulo como un segmento de línea discontinua](https://rvso.com/image/305912/Dibujar%20la%20bisectriz%20de%20un%20%C3%A1ngulo%20como%20un%20segmento%20de%20l%C3%ADnea%20discontinua.png)
(1). AX
, la bisectriz del ángulo C^{'}AC, debe ser un segmento de línea discontinua.
(2). C^{'}X
debe dibujarse, y esa línea también debe ser una línea discontinua.
\documentclass[11pt,a4paper]{article}
\usepackage{blindtext}
\usepackage{tikz}
\usepackage{tkz-euclide}
\usetkzobj{all}
\usepackage{color}
\begin{document}
\begin{tikzpicture}
\tkzDefPoint(0,0){A}
\tkzDefPoint(12,0){B}
\tkzDefPoint(3,7){C}
\tkzDefPoint(10,4){C^{'}}
\tkzLabelPoints[below](A)
\tkzLabelPoints[below](B)
\tkzLabelPoints[above](C)
\tkzLabelPoints[right](C^{'})
\tkzDrawSegment(A,B)
\tkzDrawSegment(A,C^{'})
\tkzDrawSegment(B,C^{'})
\tkzDrawSegment(A,C)
\tkzDrawSegment(B,C)
\tkzMarkSegment[color=red,pos=0.5,mark=|](A,B)
\tkzMarkSegment[color=red,pos=0.5,mark=||](A,C^{'})
\tkzMarkSegment[color=red,pos=0.5,mark=||](A,C)
\tkzDefLine[bisector](C^{'},A,C)
\tkzGetPoint{X}
\tkzDrawSegment[add=0pt and -273pt](A,X)
\tkzLabelLine[pos=0.45](A,X){X}
\tkzDrawSegment[dashed](C^{'},X)
\end{tikzpicture}
\end{document}
Respuesta1
Estas son las líneas relevantes:
\tkzDefLine[bisector](C^{'},A,C)
\tkzGetPoint{x}
\tkzInterLL(A,x)(C,B)
\tkzGetPoint{X}
Obtenga la bisectriz de C^{'}AC
y obtenga su punto final x
; luego encuentre X
como la intersección entre Ax
y CB
.
El código:
\documentclass[11pt,a4paper]{article}
\usepackage{tkz-euclide}
\usetkzobj{all}
\begin{document}
\begin{tikzpicture}
\tkzDefPoint(0,0){A}
\tkzDefPoint(12,0){B}
\tkzDefPoint(3,7){C}
\tkzDefPoint(10,4){C^{'}}
\tkzLabelPoints[below](A)
\tkzLabelPoints[below](B)
\tkzLabelPoints[above](C)
\tkzLabelPoints[right](C^{'})
\tkzDrawSegment(A,B)
\tkzDrawSegment(A,C^{'})
\tkzDrawSegment(B,C^{'})
\tkzDrawSegment(A,C)
\tkzDrawSegment(B,C)
\tkzMarkSegment[color=red,pos=0.5,mark=|](A,B)
\tkzMarkSegment[color=red,pos=0.5,mark=||](A,C^{'})
\tkzMarkSegment[color=red,pos=0.5,mark=||](A,C)
\tkzDefLine[bisector](C^{'},A,C)
\tkzGetPoint{x}
\tkzInterLL(A,x)(C,B)
\tkzGetPoint{X}
\tkzLabelPoints[above](X)
\tkzDrawSegment[dashed](A,X)
\tkzDrawSegment[dashed](C^{'},X)
\end{tikzpicture}
\end{document}