Hi,
I want to create un master document in which the sub documents are inserted like "references". That's an example from Office Open XML documentation (
http://www.ecma-international.org/news/TC45_current_work/Office%20Open%20XML%20Part%201%20-%20Fundamentals.pdf) :
Example: Consider a master document, whose three subdocuments are called Start, Middle, and End, respectively. Master’s Main Document part has a corresponding relationships part that contains the following, in which Start.docx, Middle.docx, and End.docx are packages containing the corresponding subdocuments:
<Relationships xmlns="…">
<Relationship Id="rId5"Type="http://…/subDocument" Target="Start.docx" TargetMode="External"/>
<Relationship ...