Quantcast
Channel: Adding optional argument (as exponent) to custom math expressions - TeX - LaTeX Stack Exchange
Viewing all articles
Browse latest Browse all 2

Answer by Phelype Oleinik for Adding optional argument (as exponent) to custom math expressions

$
0
0

You can use a flag value to represent “no value”. In this case, since it's for typesetting, it's pretty safe to use an empty default and test for that:

\newcommand\bigO[2][]%  {\mathcal{O}(#2\if\relax\detokenize{#1}\relax\else^{#1}\fi)}$\bigO{\epsilon}$ and $\bigO[3]{\epsilon}$

Or you can use \NewDocumentCommand, and test if the optional argument was given using \IfValueT:

\NewDocumentCommand \bigOo { o m }  {\mathcal{O}(#2\IfValueT{#1}{^{#1}})}$\bigOo{\epsilon}$ and $\bigOo[3]{\epsilon}$

Or if you want a more natural syntax, you can use the e argument type:

\NewDocumentCommand \bigOoh { m e^ }  {\mathcal{O}(#1\IfValueT{#2}{^{#2}})}$\bigOoh{\epsilon}$ and $\bigOoh{\epsilon}^3$

Here's a document with all three versions:

\documentclass{article}\begin{document}\newcommand\bigO[2][]%  {\mathcal{O}(#2\if\relax\detokenize{#1}\relax\else^{#1}\fi)}$\bigO{\epsilon}$ and $\bigO[3]{\epsilon}$\NewDocumentCommand \bigOo { o m }  {\mathcal{O}(#2\IfValueT{#1}{^{#1}})}$\bigOo{\epsilon}$ and $\bigOo[3]{\epsilon}$\NewDocumentCommand \bigOoh { m e^ }  {\mathcal{O}(#1\IfValueT{#2}{^{#2}})}$\bigOoh{\epsilon}$ and $\bigOoh{\epsilon}^3$\end{document}

enter image description here


Viewing all articles
Browse latest Browse all 2

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>