次のような最初の XML TEI ファイルがあります。
<?xml version="1.0" encoding="UTF-8"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader xml:lang="en" />
<text>
<body>
<div type="chapter" n="1">
<p>
<s xml:id="e_1">In my younger and more vulnerable years my father gave me some advice that I've been turning over in my mind ever since.</s>
</p>
<p>
<s xml:id="e_2">"Whenever you feel like criticizing any one," he told me, "just remember that all the people in this world haven't had the advantages that you've had."</s>
</p>
</div>
<div type="chapter" n="2">
<p>
<s xml:id="e_3">In my younger and more vulnerable years my father gave me some advice that I've been turning over in my mind ever since.</s>
</p>
<p>
<s xml:id="e_4">"Whenever you feel like criticizing any one," he told me, "just remember that all the people in this world haven't had the advantages that you've had."</s>
</p>
</div>
</body>
</text>
</TEI>
次に、次のような 2 番目の XML TEI ファイルがあります。
<?xml version="1.0" encoding="UTF-8"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader xml:lang="en" />
<text>
<body>
<div type="chapter" n="1">
<p>
<s xml:id="f_1">explanation of the sentence e_1.</s>
</p>
<p>
<s xml:id="f_2">explanation of the sentence e_2</s>
</p>
</div>
<div type="chapter" n="2">
<p>
<s xml:id="f_3">explanation of the sentence e_1.</s>
</p>
<p>
<s xml:id="f_4">explanation of the sentence e_2</s>
</p>
</div>
</body>
</text>
</TEI>
2 番目のファイルには、最初のファイルの説明がほとんど含まれていません。これら 2 つのファイル間で相互参照を行うことができるかどうかを知りたいですか? XMLでそれを行うための一般的/最良の方法は何ですか? そして、TEI に特有のものはありますか?