I would like to use the "related" field provided by the biblatex package.
But as I read the documentation, it implies to use only a entry key, and I would like a part of a book, not all the book.
So I would like to precise page (because I could use the book with different pages related to different entries).
What I expect to have as output will be :
Author 1, Title 1, (meta datas)... see Author 2, Title 2, (meta datas), p. xxx ; Author 3, Title 3 (meta datas) ... p. yyy etc.
(In fact, it will quite more complexe, but the idea is the same : link to precise page of other book) I was thinking to do something like this :
@book{key,
...}
@book{key2,
crossref={key},
pages={xxx}
}
@book{key3,
...}
@book{key4,
crossref={key2},
pages={yyyy}
}
@book{key5,
related={key2, key5}
...
}
But I would like to avoid "false" subentry. Do you have any idea ?

biblatex.def. You can define your ownrelatedtypefield type, something like "pagesin" or whatever and then define a related macro to only print pages at the end. – PLK Nov 27 '13 at 21:16pagesfield in@bookentries and print it only when the entry is refereed as related (in the 'related loop') but not when it is cited separately. Would it be enough? Or you need something more complicated? – Oleg Domanov Dec 07 '13 at 11:47related={key1,11-12,key2,100-200}. I'm afraid there is no easy way to do so. At least I can't find anything, sorry. – Oleg Domanov Dec 07 '13 at 19:38