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

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. 产品名

		
<para>
<productname class='trade'>Frobozz</productname>: it's not
just for breakfast anymore.
</para>		
		
		

Frobozz™ : it's not just for breakfast anymore.

7.5.5. TM 商标

		
<trademark>Microsoft</trademark>
		
		


Microsoft

7.5.6. 字体

Font Formatting Codes

7.5.6.1. strong

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

Note

7.5.6.2. bold

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

7.5.6.3. italic

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

7.5.6.4. literal

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

literal

Code

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

7.5.6.5. remark

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

Some details are still a bit shaky

7.5.7. citetitle — The title of a cited work

		
<!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>		

<para>
For a complete methodology for DTD creation, see
<citetitle pubwork="book">Developing SGML DTDs: From Text to Model
to Markup</citetitle> by Eve Maler and Jeanne El Andaloussi.
</para>
		
		

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

For a complete methodology for DTD creation, see Developing SGML DTDs: From Text to Model to Markup by Eve Maler and Jeanne El Andaloussi.

pubwork 类型

		
article
bbs
book
cdrom
chapter
dvd
emailmessage
gopher
journal
manuscript
newsposting
part
refentry
section
series
set
webpage
wiki		
		
		

7.5.8. medialabel

		
<para>
To install <application>The Great Foo</application>, insert the disk
labelled <medialabel>TGF Setup 1</medialabel> and run 
<command>setup</command>.
</para>

<para>
The weekly incremental backup tape is labelled
<medialabel>Backup <replaceable>nn</replaceable></medialabel>, where
<replaceable>nn</replaceable> is the week number.
</para>		
		
		

To install The Great Foo , insert the disk labelled TGF Setup 1 and run setup .

The weekly incremental backup tape is labelled Backup nn , where nn is the week number.