Luxor中文显示

我在使用Luxor.jl时遇到一个中文字符显示的问题:

using Luxor

@png begin
	fontface("JuliaMono") # select font; if not installed, fall back to default!
	label("C1", :N, Point(0, 0))
	label("C₁", :S, Point(0, 0))
    label("中", :E, Point(0, 0))
end 300 300

luxor-drawing-132738_123

请问如何加载字体使得中文字符以及一些特殊字符能正确显示?看Luxor文档描述,它似乎是用了 Fontconfig.jl来选择字体。相关Issue在这里 Luxor can’t render some unicode characters · Issue #125 · JuliaGraphics/Luxor.jl (github.com)