我有一个句子,其中包含一个被定义的术语(Euclidean distance
)但不是该句子的主要主题:
<p>Based on the Euclidean distance (the "ordinary" straight-line distance
between two points in Euclidean space) formula, the distance between the two
points is 5.</p>
我正在考虑使用<dfn>Euclidean distance</dfn>
,但我的理解是<dfn>
不能用在这句话中,因为它不是句子中主题/主题。
什么是合适的标记?
答案 0 :(得分:1)
您可以在此使用<dfn>
标记,因为这是句子的定义实例。这里唯一需要注意的是,您还提供了一些额外的信息作为示例。
这是可以接受的:
<p>Based on the <dfn>Euclidean distance</dfn> (the "ordinary" straight-line distance
between two points in Euclidean space) formula, the distance between the two
points is 5.</p>
基于欧几里德距离(&#34;普通&#34;直线距离 在欧几里德空间的两点之间)公式,两者之间的距离 积分是5。
<{3}}上的w3schools:标记表示HTML中术语的定义实例。
定义实例通常是文档中第一次使用术语。
标记的最近父级还必须包含 内部术语的定义/解释。
这很好。