Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏

第 7 章 Part 部分 / Chapter 章 / Section 节

目录

7.1. title 标题
7.1.1. subtitle
7.1.2. titleabbrev
7.2. part 部
7.3. chapter 章
7.3.1. chapterinfo
7.4. section 节
7.4.1. simplesect
7.4.2. bridgehead
7.4.3. sidebar
7.5. Paragraphs 段落
7.5.1. para 段落
7.5.2. simpara 简单段落
7.5.3. formalpara 带标题的段落
7.5.4. 产品名
7.5.5. TM 商标
7.5.6. 字体
7.5.7. citetitle — The title of a cited work
7.5.8. medialabel
7.6. blockquote 内容引用
7.7. epigraph 题词
7.8. 计算机专业标签
7.8.1. 软件名称
7.8.2. 硬件名称
7.8.3. 数据库
7.8.4. 程序标签
7.8.5. 命令

7.1. title 标题

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

7.1.1. subtitle

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

7.1.2. titleabbrev

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