Code: Select all
\documentclass{article}
\def\f{F}
\def\f(#1){F(#1)}
\def\f(#1,#2){F_{#1}^{#2}}
\begin{document}
$\f$
$\f(1)$
$\f(1,2)$
\end{document}
Thanks.
Code: Select all
\documentclass{article}
\def\f{F}
\def\f(#1){F(#1)}
\def\f(#1,#2){F_{#1}^{#2}}
\begin{document}
$\f$
$\f(1)$
$\f(1,2)$
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Code: Select all
\documentclass{article}
\begin{document}
\makeatletter
\def\f{\@ifnextchar(\@f F}
\def\@f(#1){\@@f(#1,,)}
\def\@@f(#1,#2,#3){%
\ifx\relax#2\relax
F(#1)%
\else
F_{#1}^{#2}%
\fi}
\makeatother
$\f$
$\f(1)$
$\f(1,2)$
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p