我一直在使用<blockquote>
,<q>
和<cite>
来格式化经文引用和参考文献,但我想知道是否有更合适的方法。
我遇到了 3 种典型的圣经参考:块引号、内联引号和参考(又名“章节和经文”参考)。以下是我如何格式化每一个:
块引用
<blockquote class="scripture">
<p>Then God said, <q>Let there be light,</q> and there was light.</p>
<cite>Genesis 1:3</cite>
</blockquote>
内联报价
<p>As it says in the Bible, <q class="scripture">God said, <q>Let there be light,</q></q> (<cite>Genesis 1:3</cite>) and it just happened.</p>
经文参考
<p>The account of creation is listed in <cite class="scripture">Genesis 1</cite>.</p>
所以我的问题是,这些是在这些场景中使用的最合适的 HTML 标记吗?我很确定标签很好<blockquote>
,<q>
但我不太确定<cite>
标签的用法。作为内联元素,它可以用作 a 的直接后代<blockquote>
,还是应该包含在某种其他标签中?
FWIW,我在 s 中使用<p>
标签的原因<blockquote>
是我可以获得正确和自动的引用样式和嵌套(也不管圣经引用的语言)。