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

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