我想生成一个标题由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)',)
答案 0 :(得分:0)
添加rc("text", usetex=true)
解决了问题