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.
Asked
Active
Viewed 9,082 times
3
2 Answers
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}

The fontenc package is not needed for the operator definition, but only to properly show the meaning of \sin.
Steven B. Segletes
- 237,551
\def\Arg{\mathop{\operator@font Arg}\nolimits}, which is how\sinis defined, substitutingArgin its place. If defining it in your document, surround by\makeatletterand\makeatother. – Steven B. Segletes Jan 14 '15 at 19:00