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

第 13 章 Cross references (參見項)

目錄

13.1. link 內部連結
13.2. ulink 外部連結
13.3. xreflabel / xref
13.4. footnote 腳註
13.5. lot — A list of the titles of formal objects (as tables or figures) in a document

13.1. link 內部連結

		
<link linkend="table">Table</link>
<link linkend="article-My-Article-sec"><quote>sec</quote></link>

<link linkend="font"><quote>font</quote></link>
		
		
		
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
          "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
<sect1>
	<title>Examples of <sgmltag>Link</sgmltag></title>

	<para>
	In this sentence <link linkend='nextsect'>this</link> word is
	hot and points to the following section.
	</para>
	
	<para>
	There is also a link to the section called
	<quote><link linkend='nextsect' endterm="nextsect.title"/></quote>
	in this sentence.
	</para>

	<sect2 id='nextsect'>
		<title id='nextsect.title'>A Subsection</title>
	
	<para>
	This section only exists to be the target of a couple of links.
	</para>
	
	</sect2>
</sect1>