0

在 <pre> 标签中渲染文本时,如何指定 weasyprint 应该回退到使用等宽字体?

我正在使用 weasyprint 将 HTML 文档转换为 PDF。该文档有一些我用 <pre> 标记的文本。我为此文本指定了固定宽度字体“Consolas”,但如果系统上没有 Consolas,我想回退到通用等宽字体。

但是,如果我在 CSS 中指定“等宽”,weasyprint 根本不会在等宽中呈现文本。我怀疑这可能是一个错误,但想看看我是否没有正确执行此操作。

在下面的示例中,“某些代码文本”以比例字体呈现,而“某些文本代码”以固定宽度字体呈现。

<html>
  <body>
    <pre style="font-family: Consolas, monospace; font-size: 3em">
    Some code text
    </pre>
    <pre style="font-family: Consolas; font-size: 3em">
    Some text code 
    </pre>
  </body>
</html>
4

1 回答 1

0

在 GitHub 上回复:https ://github.com/Kozea/WeasyPrint/issues/158

顺便说一句,我通常不看 StackOverflow 的 WeasyPrint 问题。写信给 WeasyPrint 的邮件列表或问题跟踪器会得到更多的回复。

于 2014-01-22T01:17:15.283 回答