问题标签 [minima]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
jekyll - Jekyll 和 Minima 有两种字体?
我试图让 Jekyll 使用两种字体,一种用于标题,一种用于正文。为此,我已将整个 _sass 文件夹复制到我网站的根目录,然后更改 \_sass\minima\_base.scss 以包含两种字体的定义......
然后在 \_sass\minimua.scss 中,我更改了基本字体的样式,然后添加了标题字体:
我还创建了 \_sass\my_overrides.scss,如下所示:@charset "utf-8";
但据我所知,字体在使用中被切换(截图如下)。而且我可能忘记了一些事情,因为整个过程是如此复杂。
所以我的问题是:我如何让两种字体与 Jekyll 一起使用,serif 用于正文,san-serif 用于标题?
我想我也可以问一下 Jekyll 是否内置了双字体工具,如果没有,为什么不呢?但也许这听起来好战?(这不是故意的。)
python - 组合图中的关闭点
所以我有下面给出的值。这里 Index 是帧号,A 是与该帧号相关的值。
使用上面的值,我试图绘制一个图,它给了我最大值和最小值。现在有一些最大值和最小值非常接近,我想将它组合到一个点。我附上了图表的图像。
编辑 1:- 我的预期输出是,如下图的第 4 个图所示,我希望它是一个连续图,并将非常接近的最小值和最大值组合为一个值。 图表的图像
编辑 2:- 我的最大值如下。我想将索引 69 和 72 合并为一个点,因为它们非常接近。
r - 是否有用于查找二元函数的局部最小值的 R 函数?
我有以下功能:
我有兴趣使用 R 中的代码找到这个双变量函数的所有 4 个局部最小值。我该怎么做?
python - Optimizing a function within a given range in scipy
I have been trying to get the minimum for a function of a single variable. The function is:
The function's derivative (which is (x - 6)/sym.sqrt((x - 6)**2 - 121) + (x + 6)/sym.sqrt((x + 6)**2 + 25)) blows up for x equal to -5 ad becomes complex for x greater than that (for example, -4) but less than 18 (which we can ignore for simplicity here), due to the first term. Therefore, I wrote the code to only evaluate the function for x between -6 and -10 (by inspection, I could see that the minimum was around -8.6, so I chose -10):
Unfortunately, I got this error:
TypeError: ufunc 'isnan' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''
Can someone help me with this issue?
Regards,
Prasannaa
jekyll - 如何以最小值更新谷歌分析片段?
谷歌分析最近更改了需要添加到页面的代码片段。Minima 主题仍然使用旧模板,导致数据丢失。这是 github 上的一个未解决问题。
我想我应该能够通过在本地编辑 gem 文件来解决这个问题。
我试图进入我机器上的 gem 文件夹(cp -R `echo "$(bundle info minima --path)/_*/"` .
),在那里修改代码并重建我的网站(使用bundle exec Jekyll build
),但这似乎没有帮助。
我是 Jekyll/Ruby 的新手,希望得到一些指导。
github - 在 github minima 中嵌入 gist 标签 {% gist 7555c74 %} 不起作用
我正在尝试使用 tag 通过我的要点添加代码摘录{% gist 1234567 %}
。但是它们没有显示在我的帖子中。它们按原样显示。{% gist 1234567 %}
.
我的帖子是一个降价文件,我在 github 上使用带有 jekyll minima 主题的 github 页面托管该文件。所以帖子的链接看起来像这样
https://github.com/<user>/blog/<postname>.md
我添加了将要点包含到 _config.yml 文件中的行。以下是 _config.yml 文件中的代码。
我在最小主题的文件夹结构中看不到任何 gemfile。
作为背景 - 我使用最简单的方法来创建博客。启用 github 页面,选择主题,自定义站点并创建/发布博客文章。我什至没有本地环境。
我还需要做什么?