Microsoft Word 2007/2010 zip 形式の XML の内部形式を読み取り、それを XSLT を使用して HTML5 に変換する XSLT アプリケーションがあります。MSWord の代わりに OpenOffice ドキュメントをオプションで読み取る機能を追加する方法を調査しています。
Microsoft は脚注テキストの XML をドキュメント テキストの XML とは別に保存します。出力 HTML ページの最後のブロックに脚注を配置したいので、これはたまたま私に合っています。
しかし、私にとって残念なことに、OpenOffice は各脚注をその参照のすぐ隣に、ドキュメントのテキストとインラインで配置します。簡単な段落の例を次に示します。
<text:p text:style-name="Standard">The real breakthrough in aerial mapping
during World War II was trimetrogon
<text:note text:id="ftn0" text:note-class="footnote">
<text:note-citation>1</text:note-citation>
<text:note-body>
<text:p text:style-name="Footnote">Three separate cameras took three
photographs at once, a direct downward and an oblique on each side.</text:p>
</text:note-body>
</text:note>
photography, but the camera was large and heavy, so there were problems finding
the right aircraft to carry it.
</text:p>
私の質問は、XSLT は通常どおり XML を処理できますが、各 text:note アイテムをドキュメント テキストの最後まで保持し、一度にすべてを出力できますか?