I have the code $$\phi< \Arg_{\phi}(z)\leq \phi + 2\pi$$ which is meant to give a non-italicised Arg subscripted by phi. This shows when arg is lower case but now when it is capitalised. Could anyone help me fix this?
Thanks.
Asked
Active
Viewed 23 times
0
THN
- 1
1 Answers
3
\Arg is not defined by default.
Assuming you are using amsmath (you should) \Arg can be defined via
\DeclareMathOperator\Arg{Arg}
Use \DeclareMathOperator* if you want limits on \Arg to behave lime for \lim.
If this is a one time use only, you can use
\operatorname{Arg}
Additionally, don't use $$...$$ it is not LaTeX and does not comply to LaTeX configurations, se Why is \[ ... \] preferable to $$ ... $$? for more info
daleif
- 54,450
\Argis not defined by default. I assume you're usingamsmaththen here is how to properly define it\DeclareMathOperator\Arg{Arg}, use\DeclareMathOperator*if you want ti to behave lime\limregards to limits. – daleif Feb 11 '20 at 17:09