25 Nov
2005
25 Nov
'05
7:42 a.m.
Thomas A. Schmitz wrote:
I'm trying to have the edition of a book typeset as a superscript, small number. In my setuppublicationlayout[book], I tried this:
\insertedition{ \high\bgroup\tfxx}{\egroup}{ }%
Your problem is that \high expects an argument enclosed in braces, so you have to give it that. This is a bit more complicated, but should work: \insertedition{ \setbox2=\hbox\bgroup\tfxx}{\egroup\high{\box2}}{ }% Taco