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

7.5. Paragraphs 段落

7.5.1. para 段落

		
<para>helloworld</para>
		
		

7.5.2. simpara 簡單段落

		
<simpara>
	Just the text, ma'am.
</simpara>
		
		

Just the text, ma'am.

7.5.3. formalpara 帶標題的段落

		
<formalpara>
  <title>A Formal Paragraph</title>
  <para>has a title that appears in bold, and a body paragraph.
  The title paragraph is incorporated into the body paragraph in HTML,
  and is separate in PDF.  The body paragraph is a regular &lt;para&gt;
  paragraph, and there is only one body paragraph allowed per formal
  paragraph.</para>
</formalpara>
		
		

A Formal Paragraph.  has a title that appears in bold, and a body paragraph. The title paragraph is incorporated into the body paragraph in HTML, and is separate in PDF. The body paragraph is a regular <para> paragraph, and there is only one body paragraph allowed per formal paragraph.

7.5.4. TM 商標

		
<trademark>Microsoft</trademark>
		
		


Microsoft

7.5.5. 字型

Font Formatting Codes

7.5.5.1. strong

			
<para><emphasis role="strong">Note</emphasis></para>
			
			

Note

7.5.5.2. bold

			
<emphasis role="bold">text</emphasis>
			
			
text

7.5.5.3. italic

			
<emphasis role="italic">text</emphasis>
			
			
text

7.5.5.4. literal

			
<para><literal>literal</literal></para>
			
			

literal

Code

			
<literal role="code">< ! [ CDATA [ code ] ] ></literal>
			
			
code

7.5.5.5. remark

			
<remark>Some details are still a bit shaky</remark>
			
			

Some details are still a bit shaky

7.5.6. citetitle

		
<!DOCTYPE para PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
          "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
<para>
The <emphasis>most</emphasis> important example of this
phenomenon occurs in A. Nonymous's book
<citetitle>Power Snacking</citetitle>.
</para>		
		
		

The most important example of this phenomenon occurs in A. Nonymous's book Power Snacking .