3

I cannot find how to write "cis" which is the polar form of complex number, or "Arg" which is short for argument. Does anybody know these symbols? Thanks.

2 Answers2

11

Put this in your preamble:

\usepackage{amsmath}
\DeclareMathOperator\cis{cis}
\DeclareMathOperator\Arg{Arg}
Bernard
  • 271,350
2
\documentclass{article}
\usepackage[T1]{fontenc}
\makeatletter
\def\Arg{\mathop{\operator@font Arg}\nolimits}
\def\cis{\mathop{\operator@font cis}\nolimits}
\makeatother
\begin{document}
sin is defined as\\
\meaning\sin

$\Arg x \ne \cis y$
\end{document}

enter image description here

The fontenc package is not needed for the operator definition, but only to properly show the meaning of \sin.