I am using Word 2007 xml markup (developer tab->load a schema->double click to markup a paragraph in word). After the markup, I open document.xml from zip utility, my goal is to add some user defined data for each markup. The data is supposed to be transparent to the user, i.e. not visible from word GUI
for example, for this markup (which show up in document.xml as customXml below)
<w:customXml w:uri="http://xbrl.us/us-gaap/2008-03-31" w:element="AccountingChangesAndErrorCorrectionsTextBlock">
<w:sz w:val="20" />
<w:szCs w:val="20" />
</w:rPr>
<w:t>Refer to the information under the caption "Ownership of Securities—Common Stock and Total Stock-Based Holdings of Management" in IBM's definitive Proxy Statement to be filed with the Securities and Exchange Commission and delivered to stockholders in connection with the Annual Meeting of Stockholders to be held April 24, 2007, all of which information is incorporated herein by reference</w:t>
</w:r>
</w:customXml>
I want to add the following data to this markup.
<ix:nonFraction ix:contextRef='FY2007' ix:decimals='2' ix:name='ct-Tax:CalculationOfCTLiabilityProfits' ix:unitRef='GBP' xmlns:ix='http://www.xbrl.org/2008/inlineXBRL' xmlns:ct-Tax='http://www.govtalk.gov.uk/uk/fr/tax/uk-hmrc-ct-Tax/2008-10-07'>9,542,610.00</ix:nonFraction>
Where can I add this xml fragment to document.xml? Is there any xml tag available to do it?
thank you