如何控制 iBooks 用于显示弹出脚注的字体?
在 CSS 中,我将正文字体设置为 Helvetica,DejaVuSans 提供了一些 Helvetica 中没有的字形。当脚注以列表形式显示在章节末尾时,它们使用的是 Helvetica。当脚注出现在弹出窗口中时,它们使用了一些衬线字体。
例如,在文本中我有:
<a epub:type="noteref" class="noteref" href="#fn1" id="fnref1">1</a>
最后我有一个脚注部分:
<section epub:type="footnotes" id="ch002footnotes">
<hr />
<ol>
<li epub:type="footnote" id="fn1">Thomas Kuhn, <cite>The Structure of Scientific Revolutions</cite>, 51.<a href="#fnref1"> ↩</a></li>
…
</ol>
</section>
当我触摸脚注参考时,注释会按预期弹出,但使用的是衬线字体而不是 Helvetica。
谢谢,