سلام،خسته نباشید،من یک مشکل دارم که خودم نتونستم حلش کنم ،لطف کنید کمکم کنید ممنون میشم،من میخوام در خروجی این برنامه این مثلث روی محور رسم بشه یعنی ضلع پائین مثلث محور باشه ولی هر تغییری میدم باز هم مثلث کنار رسم میشه
\documentclass[12pt,a4paper]{article}
\usepackage{tikz}
\usepackage{tkz-euclide}
\usepackage{xepersian}
\begin{document}
\begin{tikzpicture}
\tkzInit[xmin=-4.5,xmax=4,xstep=1]
\tkzAxeX[label={}]
\coordinate (A) at(1,0) ;
\coordinate (B) at (0,0);
\begin{picture}
\setlength{\unitlength}{1cm}
\put(1,0){\line(0,1){1}}
\put(0,0){\line(1,1){1}}
\end{picture}
\node[below=2pt,text=blue,fill=red] at (1.4,0) {$\sqrt{2}$};
\end{tikzpicture}
\end{document}