Question: I want to add angle marks to all angles in the figure with specified angle value.
\documentclass[12pt]{article}
\usepackage{pgf,tikz,pgfplots}
\usetikzlibrary{arrows}
\pagestyle{empty}
\usepackage{tkz-euclide}
\usetkzobj{all}
\begin{document}
\begin{tikzpicture}
\draw [<->,line width=0.8pt] (-3,4)-- (3,4);
\draw [<->,line width=0.8pt] (-3,0)-- (3,0);
\draw [line width=0.5pt] (-1.52,4)-- (1.52,0);
\draw [line width=0.5pt] (1.5,4)-- (-1.52,0);
\draw[color=black] (-1.55,4.30) node {$P$};
\draw[color=black] (1.45,-0.3) node {$B$};
\draw[color=black] (1.45,4.30) node {$S$};
\draw[color=black] (-0.5,2.00) node {$O$};
\draw[color=black] (-1.55,-0.3) node {$S$};
\end{tikzpicture}
\end{document}
