@chunk="to-content", but that’s not the only option.
Although it’s common practice to have one topic per file, it’s not required. If you are not going to be reusing topics in multiple contexts you might prefer to have multiple topics in the same file.
For example:
<!DOCTYPE dita PUBLIC "-//OASIS//DTD DITA Composite//EN" "ditabase.dtd">
<dita>
<concept id="concept_bm1_q4m_yj">
<title>About widgets</title>
<conbody>
<p>Widgets are very useful.</p>
</conbody>
<task id="task_bm1_q4m_yj">
<title>Create a widget</title>
<taskbody>
<steps> ... </steps>
</taskbody>
</task>
<task id="task_bm1_q4m_yk">
<title>Drag a widget in place</title>
<taskbody>
<steps> ... </steps>
</taskbody>
</task>
</concept>
</dita>
The question about relying primarily on TOC is an interesting one discussed by Jonatan Lundin here and Mark Baker here.


