Home | 简体中文 | 繁体中文 | 杂文 | 知乎专栏 | 51CTO学院 | CSDN程序员研修院 | Github | OSChina 博客 | 腾讯云社区 | 阿里云栖社区 | 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.6.1. strong
7.5.6.2. bold
7.5.6.3. italic
7.5.6.4. literal
7.5.6.5. remark
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.4.1. 函数
7.8.4.2. 类名
7.8.4.3. 变量名
7.8.4.4. synopsis
7.8.4.5.
7.8.5. 命令
7.8.5.1. 参数
7.8.5.2. 环境变量
7.8.5.3. 输入提示
7.8.5.4. 用户输入
7.8.5.5. 主机名
7.8.5.6. 文件名
7.8.5.7. cmdsynopsis
7.8.5.8. 命令参数可选项
7.8.5.9. 终端输出

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>