I'm writing a book chapter for publication and the publisher accepts Latex. I like to use equation macros
\newcommand{\funof}[1]{\ensuremath\left(#1\right)}
that I can then use in an equation
$i\funof{t}$
I assume the publisher is not going to want to have to deal with these macros. Is there a way to unroll equations so that I can give the publisher the final expression with my macros substituted?
Edit: This is a Springer-Verlag publication, so if anyone has experience with a similar issue. Please let me know.
sedin bash script to replace LaTeX aliases. – Werner Aug 01 '13 at 14:23\ensuremath\left(#1\right)is wrong under several respects:\ensuremathtakes an argument, so it should be\ensuremath{\left(#1\right)}; but since you're using\funofin math mode, the\ensuremathis redundant. Also\leftand\rightadd a wrong space: compare$i(t)$and$i\left(t\right)$. – egreg Aug 01 '13 at 20:40