I am trying to draw a triangle with arrows instead of line. This is what I have tried...
\documentclass{article}
\usepackage{tikz}
\usepackage{siunitx}
\usepackage{float}
\title{}
\author{}
\date{}
\begin{document}
\begin{tikzpicture}[scale=1.25][H]
\coordinate [label=left:$C$] (A) at (-1.5cm,-1cm);
\coordinate [label=right:$A$] (C) at (1.5cm,-1cm);
\coordinate [label=above:$B$] (B) at (1.5cm,1cm);
\draw (A) -- node[left] {$S = 77819.41 VA$}
(B) -- node[right] {$Q = 37953.10 VAR$}
(C) -- node[below] {$P = 67936 \si{\watt}$} (A);
\end{tikzpicture}
\end{document}
The problems:
Line needs to be arrows
from C to B & A to B & C to A
"A" label shouldn't be there in the line
- General code and design formatting
- Need to add an angle where C is
- Remove all A, B, C labels
(Angle symbol is phi)







\draw[->, ...]. You can specify>=<arrow-name>too, i.e.>=latex. – cis Jan 05 '20 at 19:27