FUNCTION: TexStr - dump a string
CALLING SEQUENCE:
- TexStr(s)
- TEX[TexStr](s)
-
PARAMETERS:
- s = any string
SYNOPSIS:
- The TexStr function dumps a string, without using any buffer. The
result is directly printed on the output so that it may be used every
time.
- The problem is when using it inside your own functions, the results may
be controlled to be sure that the output is done at the right time.
- Whenever there is a conflict between the function name TexStr and
another name used in the same session, use the long form
TEX['TexStr'].
EXAMPLES:
> with(TEX):
> TexStr(`\\end `);
\\end
> TexStr(`a_b`);
a_b
> Tex(`a_b`);
{a\\_b}
SEE ALSO: TEX[advanced] Tex Texer TexCat