複数の対象読者向けのコンテンツを含む1つのdocbookxmlドキュメントが必要です。「上級」ユーザーにのみ必要なものを除外できるフィルターはありますか?
level属性は、私が考えていることを表現するために私が考案したものです。
<?xml version="1.0"?>
<book>
<title lang="en">Documentation</title>
<chapter id="introduction" level="advanced">
<title>Introduction for advanced users</title>
</chapter>
<chapter id="introduction" level="basic">
<title>Introduction for basic users</title>
</chapter>
<chapter id="ch1">
<para level="basic">Just press the button</para>
<para level="advanced">
Go to preferences to set your
needs and then start the process
by pressing the button.
</para>
</chapter>
</book>