[Tex/LaTex] latex draw- mathematical letters and symbols

labels

When I am using Linux mint 17 i found this mistake rather not in windows. That is, in this Linux i have put Latex Draw 2.0 it is not giving the mathematical symbols. that is, Suppose i wish to name a corner of a rectangle as $\beta$ it is giving as it in the commands.

note down the left top corner

Kindly help me to do the correction.. Or suggest me some other drawing software like latexDraw which will generate the latex command by its own..

I am adding one more pic for ur assistance…

!my working on latex Draw..

Best Answer

One way, with tikz:

\documentclass[tikz]{standalone}

\begin{document}
\begin{tikzpicture}
  \draw (1.5,0) rectangle (0,1.5) node[above right] {$\beta$};
\end{tikzpicture}
\end{document}

enter image description here