Hi, I have two questions concerning MP graphics. What's going on here? The “abcdefghi” text is not displayed in the second graphic and the “A” is stretched to match the size of the first graphic. Can someone explain why this happens and if this is expected? \startreusableMPgraphic{foo} draw textext("abcdefghi"); picture p; p := currentpicture; \stopreusableMPgraphic \startreusableMPgraphic{bar} addto currentpicture also p; %% not printed draw textext("A"); %% distorted \stopreusableMPgraphic \starttext \reuseMPgraphic{foo} \reuseMPgraphic{bar} \stoptext Does \includeMPgraphic only work with useMPgraphics (in contrast to reusableMPgraphic)? %% works with useMPgraphics, though \startreusableMPgraphic{alpha} draw textext("abcdefghi"); \stopreusableMPgraphic \startreusableMPgraphic{beta} \includeMPgraphic{alpha} draw textext("A"); %% not printed \stopreusableMPgraphic \starttext \reuseMPgraphic{alpha} \reuseMPgraphic{beta} \stoptext Marco