How to use navtitle from parent topicref instead of child one during generating pdf by dita-ot -


i'm using dita-ot tool convert dita pdf.

i have parent ditamap file this:

<topicref href="111.ditamap" navtitle="parent title 111" format="ditamap"> ... </topicref> <topicref href="222.ditamap" navtitle="parent title 222" format="ditamap"> ... </topicref> 

and 2 child ditamap files

111.ditamap:

<topicref navtitle="child title 111" format="ditamap">    child content 111 </topicref> 

222.ditamap:

<topicref navtitle="child title 222" format="ditamap">    child content 222 </topicref> 

in result pdf have somth. this:

... child title 111    child content 111 child title 222    child content 222 ... 

but i'd have this:

... parent title 111    child content 111 parent title 222    child content 222 

how can achieve it?

a reference dita map transparent in table of contents, not add title , level it. want achieved like:

     <topichead navtitle="parent title 111">       <topicref href="111.ditamap" format="ditamap">        ...       </topicref>      </topichead> 

regards, radu


Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -