Georg Baum schrieb:
> Am Donnerstag, 9. November 2006 14:15 schrieb Enrico Forestieri:
>> On Thu, Nov 09, 2006 at 01:26:31PM +0100, Georg Baum wrote:
>>
>>> We have unicode for document contents. We don't have unciode for
> internal
>>> keywords. This is the same as in LaTeX: You cannot define commands with
>>> non-ascii characters.
>> You know you are wrong here, don't you? ;-)
>
> No, i mean that seriously. cat code games are dirty TeX hacks. \newcommand
> does not work with nonascii command names.
\documentclass{minimal}
\expandafter\newcommand\csname f¶o\endcsname{foo}
\begin{document}
\csname f¶o\endcsname
\makeatletter
[EMAIL PROTECTED] look}
\makeatother
\end{document}
Herbert