From: Nuno A. <nun...@un...> - 2011-01-18 13:02:27
|
Thanks Tim. It works! Cheers, Nuno. On 18 Jan 2011, at 12:11, Tim Miller wrote: > Hi Nuno, > > You wrote: >> I would like the CZT typechecker to ignore certain latex commands. Fuzz had the %%ignore directive to enable this. Is there a similar directive for the CZT typechecker? >> > There is no ignore command, but you can accomplish the same thing by adding a latex directive of the form: > > %%Zword \zbreak {} > > This tells the lexer to convert all \zbreak commands into nothing, so the parser will not see them. Alternatively, you can use > > %%Zword \zbreak \\ > > which will convert all \zbreak commands into newline characters, so they can be used as whitespace. > > Regards, > Tim |