Macro not found

This error may indicate that Tex2RTF has not implemented a standard ATEX macro, or that a local macro package is being used that Tex2RTF does not know about. It can cause spurious secondary errors, such as not recognising the end document command.

You can get round this by defining a macro file (default name tex2rtf.ini) containing command definitions, such as:

\crazy      [2]{{\bf #2} is crazy but #1 is not}
\something  [0]{}
\julian     [0]{Julian Smart}

New commands may be defined in LATEX files, but custom macro files will have to be defined when local style files are being used. See Initialisation file syntaxinifile for further details.

The `Macro not found' error can also be caused by a syntax error such as an unbalanced brace or passing the wrong number of arguments to a macro, so look in the vicinity of the reported error for the real cause.

Here is one obscure situation that causes this error:

\begin{center}
{\large{\underline{A}}}
\end{center}

The problem is too many curly brackets. This should be rewritten as:

\begin{center}
{\large \underline{A}}
\end{center}