Hello,
It you don't want to display news on the document with a repeater, but redirect user to a actual page of that news, you can use a repeater as it was mentioned in my first post, but now the "pager" will be rendered only by this repeater and its transformation. The properties of that repeater web part will be also the same, except the transformation (and you will need to fill 3 more properties - where condition, content before and content after). Here is an idea:
1) Transformation displays links in numbers according actual pager position from a query string
2) Where condition select documents, which aren't in top N documents also from query string
3) Content before/after generates links, which increas/decrease query string by 5 (number of items)
Just one more thing, you will need to use logic operation in your transformation, so please choose its type as the Text/XML one and this mentioned transformation could look like the following one:
{%
if (QueryString.GetValue("news") > 0) {news = QueryString.GetValue("news")}
else {news = 1}
item = DataItemIndex.ToInt() + news.ToInt();
"";
%}</a>
Best regards,
Jan Hermann