Home | 簡體中文 | 繁體中文 | 雜文 | 知乎專欄 | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 視頻教程 | 打賞(Donations) | About
知乎專欄多維度架構 | 微信號 netkiller-ebook | QQ群:128659835 請註明“讀者”

第 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. TM 商標
7.5.5. 字型
7.5.5.1. strong
7.5.5.2. bold
7.5.5.3. italic
7.5.5.4. literal
7.5.5.5. remark
7.5.6. citetitle
7.6. blockquote 內容引用
7.7. epigraph 題詞

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>