我正在尝试使用 asciidoctor-pdf 编写文档,我需要使用以下字符:ă,â,î,ş,ţ。pdf 输出被渲染,但提到的字符被渲染为空。我不确定如何处理这个问题。
例如:
我写了这段代码:
= Document Title
Doc Writer <doc@example.com>
:doctype: book
:source-highlighter: coderay
:listing-caption: Listing
// Uncomment next line to set page size (default is Letter)
//:pdf-page-size: A4
A simple http://asciidoc.org[AsciiDoc] document.
== Introducţie
A paragraph followed by a simple list with square bullets.
结果是 Introducţie 这个词呈现为 Introduc ie,最后是错误:
/usr/local/rvm/gems/ruby-2.2.2/gems/pdf-core-0.2.5/lib/pdf/core/pdf_object.rb:55: warning: regexp match /.../n against to UTF-8 string
- 会不会是系统编码配置问题?
- 我需要在 ruby 中设置不同的编码配置吗?
谢谢你。