Hello ConTeXist... I found a problem in functioning links in the final PDF document created in standalone MkIV. 1. When I create in standalone MkIV version more of splitted tables, then links in the list of tables are broken (numbering is fine, but when you click on an active link then does not work). 2. When I compile the source file by MkIV part of TeX live 2010 (ConTeXt ver: 2010.05.24 13:05 MKIV fmt: 2010.9.21) then numbering in the list of tables is broken (each of partitioned tables has a separate number) but links are OK. 3. When I compile the source file by MkII part of TeX live 2010 (ConTeXt ver: 2011.07.26 09:17 MKII fmt: 2011.7.26) then everything is fine. Is it a bug or I something wrong? Thanx Jaroslav Hajtmar Here is my minimal example: \setupcolors[state=start] \setupinteraction[state=start,color=blue] \def\parenttable{{\bTABLE\dorecurse{60}{\bTR\dorecurse{3}{\bTD x\eTD}\eTR}\eTABLE}} \starttext List of tables \placelistoftables \page \placetable[split][tab.1]{Table 1}{\parenttable} \page \placetable[split][tab.2]{Table 2}{\parenttable} \page \placetable[split][tab.3]{Table 3}{\parenttable} \stoptext