0
<pre class="Input" style="white-pace:nowrap; overflow: auto;"><code>Plot[{Sin[1/x]}, {x, -1, 3}, 

 RegionFunction -&gt; Function[{x}, 0 &lt; x &lt; 10], 

 PlotRange -&gt; {{-1, 3}, {-1.2, 1.2}}, 

 PlotLabel -&gt; TraditionalForm[Sin[1/x]], PlotStyle -&gt; Red, 

 AxesLabel -&gt; {"x", "y"}, AxesStyle -&gt; Arrowheads[{-0.03, 0.03}]]</code></pre>

错误信息是:

Error: Variable `{{-1,3}` was not properly terminated with regexp: /\}\}/. Use --trace to view backtrace

我使用 GithShell 使用 Jekyll(用于 github 页面)

4

2 回答 2

1

{{是液体模板语言的一部分。尝试编码{或将内容包含在{% raw %} {% endraw %}块中。

于 2013-09-14T11:16:18.477 回答
1

因为它'{{'被认为是液体的一部分。

例如
'{{site.title}}'将替换为您在 _config.yml 中设置的站点名称

于 2013-09-15T05:53:41.117 回答