others-markdown记录

others-markdown记录


使用html可以并排多张图片

  • 例如:

    1
    2
    3
    4
    5
    <p align="center">
    <img src="http://yx01.itengshe.com/20181129171424-1.jpg" width="200" height="100">
    &nbsp; &nbsp; &nbsp; &nbsp;
    <img src="http://yx01.itengshe.com/20181129171426-2.jpg" width="120" height="100">
    </p>
  • 效果

           


LaTeX 公式

参考: 文本(图片)公式转换成markdown/latex格式————mathpix - https://blog.csdn.net/sinat_38816924/article/details/88376221

一款可以截图识别出公式, 并转化为 LaTeX 的利器: mathpix

官网下载地址: https://mathpix.com

默认截图快捷键 ctrl+alt+m, 改为 ctrl+alt+x 比较容易截图

例如:

识别结果
$$
F_{\text {schlick}}(\mathbf{v}, \mathbf{n})=F_{0}+\left(1-F_{0}\right)(1-\mathbf{v} \cdot \mathbf{n})^{5}
$$

typroa 设置中最好勾上 内联公式 LaTeX

如果忘记某些符号,可以在下面链接快速找到。
在线LaTex公式编辑器盒子:https://www.codecogs.com/latex/eqneditor.php

修改 typora 的公式 css

根据官方文档提示: https://theme.typora.io/doc/Write-Custom-Theme/

修改预览部分为 .mathjax-block, 如果没有可以自行加上, 如:

1
2
3
4
.mathjax-block {
background-color: transparent;
font-size: 1.7rem;
}