I can think of multiple ways of writing the sum of a vector $\mathbf{v}$'s elements, but is there a standard operator for this?
Using "programming" notation it is typically sum($v$), but this seems informal. Perhaps just $\mathbf{1}^T \mathbf{v}$ or $\mathbf{1} \cdot \mathbf{v}$?
If you use the euclidean 1-norm and you want the sum of the absolute values of the entries of $\vec{v}$ (or $v_i\geq 0$ ) you can take $\| \vec{v}\|_1$. Otherwise you can use $sum\{\vec{v} \}$ or $trace( diag\{ \vec{v}\})$. But I guess $sum\{\vec{v}\}$ would be the more "standard" notation.