From: Tim M. <tm...@un...> - 2011-01-18 11:41:44
|
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 |