记录typora+hexo+next使用圆圈数字和多行latex

在编辑 这篇博客,遇到了两个问题

  1. 如何展示圆圈里面数字

看了一下网上教程,一般是更改平台导入宏包或者使用\textcircled语法,但是前者可能出现更多的问题 后者我这边本地不凑效

然后看了 这篇博客 学习到了一个切实可行的写法

1
2
3
4
5
6
7
8
9
10
$$
\enclose{circle}{1} \\
\enclose{circle}[mathcolor="red"]{2} \\
\enclose{box}{3} \\
\enclose{circle,box}{4} \\
\enclose{circle}{\enclose{box}{5}} \\
\enclose{box}{\enclose{circle}{6}} \\
\enclose{circle}{\enclose{circle}{7}} \\
\enclose{box}{\enclose{box}{8}}
$$

效果: 补充:我安装了的包

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$ npm list --depth=0
hexo-site@0.0.0 C:\Users\coper\Desktop\myblog
├── hexo-asset-image@0.0.5
├── hexo-asset-img@1.1.0
├── hexo-blog-encrypt@3.1.9
├── hexo-deployer-git@4.0.0
├── hexo-filter-mathjax@0.9.0
├── hexo-generator-archive@2.0.0
├── hexo-generator-category@2.0.0
├── hexo-generator-index@4.0.0
├── hexo-generator-searchdb@1.4.1
├── hexo-generator-tag@2.0.0
├── hexo-math@5.0.0
├── hexo-renderer-ejs@2.0.0
├── hexo-renderer-kramed@0.1.4
├── hexo-renderer-pandoc@0.4.0
├── hexo-renderer-stylus@3.0.1
├── hexo-server@3.0.0
├── hexo-theme-landscape@1.0.0
├── hexo-wordcount@6.0.1
└── hexo@7.3.0

多行latex中,会出现多出来一对 $$

举个例子:

原文:

实际:

经过F12调试发现,格式和正常的也不太对

然后一通摸索之后发现,把这个去掉就可以了

然后恢复正常

(一开始还以为是直接使用字符的数字圆圈导致的显示不正常,才去搞基于latex的数字圆圈,后来才知道是因为我多打换行了)