ich erstelle gerade eine Arbeit einer Tochter eines meiner Neffen. Dazu ist es notwendig die Grafik(en) korrekt zu beschriften. Leider reichen meine Kenntnisse nicht aus, um ein kleines p unterhalb des kleinen Dreicks (links) zu schreiben. Kann mir bitte jemand helfen?
Vielen Dank
Gruß
Martin
\documentclass[a4paper,10pt]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage{xcolor}
\colorlet{lightgray}{black!10}
\colorlet{pencil}{black!25}
\usepackage{tkz-euclide}
\usetkzobj{all}
\makeatletter
\def\rechterWinkel{\@ifnextchar[\rechterWinkel@i\rechterWinkel@ii}
\def\rechterWinkel@i[#1](#2,#3,#4){%
\pgfmathsetmacro{\pos@A}{0.5*#1}
\pgfmathsetmacro{\pos@B}{0.25*#1}
\tkzMarkAngle[size=\pos@A](#2,#3,#4)
\tkzLabelAngle[pos=\pos@B](#2,#3,#4){\tikz \fill (0,0) circle (0.6pt);}
}%
\def\rechterWinkel@ii(#1,#2,#3){%
\rechterWinkel@i[1](#1,#2,#3)
}%
\makeatother
\begin{document}
\begin{tikzpicture}
\tkzDefPoint(1,1){A}
\tkzDefShiftPoint[A](8,0){B}
\tkzDefMidPoint(A,B)\tkzGetPoint{Mab}
\tkzDrawArc[color=pencil](Mab,B)(A)
\tkzDefPointWith[K=.2](A,B)\tkzGetPoint{C'}
\tkzDefPointWith[orthogonal](C',B)\tkzGetPoint{C''}
\tkzInterLC(C',C'')(Mab,B)\tkzGetSecondPoint{C}
\tkzDrawPoints(A,B,C)
\tkzDrawSegments(A,B B,C C,A C',C)
% Beschriftungen:
\tkzLabelSegment[below](A,B){$q$}
\tkzLabelSegment[right](C',C){$h=\sqrt{x}$}
\tkzLabelPoint[below left](A){$A$}
\tkzLabelPoint[below right](B){$B$}
\tkzLabelPoint[above](C){$C$}
\tkzMarkAngle(B,A,C)
\tkzLabelAngle[pos=.3](B,A,C){$\alpha$}
\tkzMarkAngle(C,B,A)
\tkzLabelAngle[pos=.85](C,B,A){$\beta$}
\rechterWinkel(A,C,B)
\end{tikzpicture}
\end{document}

