I'm having trouble developing a coupling. In the code below, you'll see a skeleton example, after which follows a discussion, and then a bit more code. I'm trying to show a that each code snippet is coupled to the first example by using an \exampleContinued macro. ----- \defineenumeration [example] [location=serried, text=Example, before=\blank, after=\blank, way=bychapter, style=italic] \definedescription [exampleContinued] [location=serried, width=fit, distance=1em, text={Example~\headnumber[chapter].\nummer[example] (continued)}, before=\blank, after=\blank, style=italic] \setupcolors[state=start] \starttext \chapter{Introduction} \input tufte \example[ex:simpleExample] A Simple Example \startJV // A very simple applet import java.applet.Applet; import java.awt.Graphics; /** This applet just says "Hello World"! */ public class HelloWorld extends Applet { ... } \stopJV \input tufte \exampleContinued[ex:simpleExample:1] The paint() method \startJV /** Just says "Hello World * @param g */ public void paint (Graphics g) { g.drawString("Hello World", 25, 10); } \stopJV \stoptext ----- You'll see that the example (continue) line is all garbled, with the first word (in this case "The") set in wrong type and also in the wrong place. I'm hoping someone can unravel the mess.