Markdown中的Latex数学公式!Inline & Display
在Markdown中,Latex数学公式可分为 inline 模式和 Display 模式。inline 模式关键词为 $$, Display 模式关键词为一对$$。因此,沿袭 Gilles Castel 大佬的习惯,有如下snippets:
# mk 表示 make Ketaxsnippet mk “Math” wA$${1}$!pif t[2] and t[2][0] not in [',', '.', '?', '-', ' ']: snip.rv = ' 'else: snip.rv = ''
$2endsnippet# dm 表示 Display mathsnippet dm “Math” wA$$${1:${VISUAL}}$$ $0endsnippet