Sphinx PDF 输出:python 源代码中的撇号被右单引号替换

发布于 2024-11-03 01:45:42 字数 493 浏览 4 评论 0原文

我使用 文档 作为 PDF 输出a href="https://www.sphinx-doc.org" rel="nofollow noreferrer">Sphinx。一切都很好,除了当 python 源代码输出时,然后单引号(unicode U+0027)输出为右单引号(U+2019),看起来很尴尬。

这里是相关字形的图像,这里是我生成的PDF。

有人知道如何纠正这个问题吗?

I am outputting some documentation as PDF using Sphinx. It's all very fine except for when python source code are output, then single quotes (unicode U+0027) are output as right single quotes (U+2019) which look awkward.

Here are images of the glyphs in question and here is my generated PDF.

Does anybody know how to correct this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

找回味觉 2024-11-10 01:45:42

将其添加到您的 sphinx conf.py (或附加到 latex_preamble< /a> 如果已经设置):

latex_preamble = """
\usepackage{upquote}
"""

Add this to your sphinx conf.py (or append to latex_preamble if it is already set):

latex_preamble = """
\usepackage{upquote}
"""
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文