如何在Weasyprint中指定回退到等宽空间

时间:2014-01-22 00:10:34

标签: html css pdf font-family weasyprint

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

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

但是,如果我在CSS中指定“monospace”,weasyprint根本不会在monospace中呈现文本。我怀疑这可能是一个错误,但想知道我是不是这样做了。

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

<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>

1 个答案:

答案 0 :(得分:0)

回应GitHub:https://github.com/Kozea/WeasyPrint/issues/158

顺便说一句,我通常不会在WeasyPrint问题上看StackOverflow。写入WeasyPrint的邮件列表或问题跟踪器将获得更多响应。