gpt4 book ai didi

Markdown 中的 Vim 语法和 Latex 数学

转载 作者:行者123 更新时间:2023-12-01 21:50:41 25 4
gpt4 key购买 nike

我使用 ViM 在 markdown 中编写文档,并且还使用 latex $$ 符号进行数学运算(我使用 pandoc 进行编译)。问题是 ViM 语法不会忽略美元符号内的下划线 _,这非常烦人。例如,如果我这样写:

$$ a_1 = 0 $$

然后,由于使用了下划线,Vim 会将以下所有文本突出显示为斜体。

我该如何改变它?

如果我能用不同的格式突出显示 $ 中的内容,那就太好了。

最佳答案

我已将这些行放入我的 .vimrc 中。它适用于同一行上的内联数学和 block 模式数学。

" This gets rid of the nasty _ italic bug in tpope's vim-markdown
" block $$...$$
syn region math start=/\$\$/ end=/\$\$/
" inline math
syn match math '\$[^$].\{-}\$'

" actually highlight the region we defined as "math"
hi link math Statement

编辑:我写了一篇名为 Vim syntax highlighting for Markdown, Liquid and MathJax 的博客文章.

关于Markdown 中的 Vim 语法和 Latex 数学,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32865744/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com