图标题由LaTeXStrings.jl和PyPlot.jl加下划线

时间:2017-07-02 14:18:04

标签: julia

我想生成一个标题由LaTeXStrings.jl

呈现的数字

但是,当我尝试使用\underline时,会返回ValueError。

我该怎么办?

示例代码是

using PyPlot
using LaTeXStrings

title = L"\underline{\theta}"

fig, ax = subplots()
ax[:plot](randn(100))
ax[:set_title](title, useTex=true)

错误是

PyError (:PyObject_Call) <type 'exceptions.ValueError'>
ValueError(u'\n\\underline{\\theta}\n^\nUnknown symbol: \\underline (at char 0), (line:1, col:1)',)

1 个答案:

答案 0 :(得分:0)

添加rc("text", usetex=true)解决了问题