On Sat, Nov 07, 2020 at 11:29:54PM +0100, Christopher Dimech wrote: > > I have seen that mathematical expressions are not displayed > when called within a macro. > > @macro Regu > @tex > \alpha > @end tex > @end macro > > @Regu > > @tex > \beta > @end tex
\alpha and \beta need to be in math mode, and the macro works OK if you double the backslash. @macro Regu @tex $\\alpha$ @end tex @end macro @Regu @tex $\beta$ @end tex
