在 Julia 中,我声明了一个变量,例如 x = 3.5。现在我想将此变量包含在使用 PGFPlotsX 的绘图的一些注释中。
x = 3.5
using PGFPlotsX
@pgf Axis(
plot(
Table(
),
),
raw"node[anchor = south west] at (.3,.3){$x = <variable name i.e., x >$}"
)
节点内的 $$ 中的适当语法应该是什么?我想避免在节点内对 x 的值 3.5 进行硬编码。