Home | 简体中文 | 繁体中文 | 杂文 | 知乎专栏 | 51CTO学院 | CSDN程序员研修院 | Github | OSChina 博客 | 腾讯云社区 | 阿里云栖社区 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏多维度架构

7.4. section 节

		
<part>
	<title>Part I</title>
	<chapter>
		<title>Chapter 1</title>
		<section>
			<title>Section 1</title>
		</section>
	</chapter>
</part>
		
		

7.4.1. simplesect

simplesect 下面不能再有 section/sect1..3/simplesect

		
<article xmlns='http://docbook.org/ns/docbook'>
	<title>Example simplesect</title>

	<section>
		<title>Additional Coding</title>

		<para>Support for the additional features requested will be provided. </para>

		<simplesect>
			<title>Estimated Time</title>

			<para>2 to 3 weeks.</para>

		</simplesect>
	</section>

</article>		
		
			

Estimated Time

2 to 3 weeks.

7.4.2. bridgehead

		
<bridgehead renderas="sect3">Topic Heading</bridgehead>
<para>You can use the Bridgehead element to create a heading
between paragraphs, without creating a new section or
sub-section.</para>
		
			

Topic Heading

You can use the Bridgehead element to create a heading between paragraphs, without creating a new section or sub-section.

7.4.3. sidebar

		
<sidebar>
	<title>A Sidebar</title>
	<para>
	Sidebar content.
	</para>
</sidebar>