偊由

Results 7 comments of 偊由

主页10条是 site._config.yml: ```yml index_generator: path: '' per_page: 10 order_by: -date ``` 分类页就不清楚了,我没动过。但展示多少条可能是和当前页面能容纳的 `post-card post` 有关,我的都有 `cover`,每个card占位多,所以只能放下五个。其他的没有 `cover`, card占位少就放得多 。

这是我的做法使用 katex,效果还是很不错的,不过这个不好提PR 参考 https://www.micdz.cn/article/katex-on-volantis/ 1.首先更换公式编译插件: ``` npm uninstall hexo-renderer-marked --save npm install hexo-renderer-markdown-it-plus --save ``` 2.在站点根文件中 _config.yml 设置: ``` # npm i hexo-renderer-markdown-it-plus markdown_it_plus: highlight: true html: true xhtmlOut: true...

测试

我也遇到了这个问题,使用的是公开库,点击github登录后显示404 This is not the web page you are looking for。

@shaoyaoqian 语法如此,都需要用 `\` 。

@shaoyaoqian 啊,是我搞混了,太久没写了,想成写程序的时候要加 ` \` 才能转义。我用的 `katex`,在 hexo 里不需要加 ` \`,可以正确识别的。 ![image](https://user-images.githubusercontent.com/84276102/203936094-08311749-9674-463d-8ce8-1ac2904e2b8a.png) ``` $$ \mu_t=\beta_0+\beta_1t+\beta_2t+…+\beta_nt $$ ```

@shaoyaoqian 行内也不用: ![image](https://user-images.githubusercontent.com/84276102/204074059-551da2d4-adcc-4157-8bd4-d79932b34b8f.png) ``` 其中对所有的$t$有$E(X)=0$。使用观测到的时间序列$Y_1,Y_2,…,Y_n$ 来估计$\mu$ 。则可由$OLSE$得出$\mu$的估计为样 ```