We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30baf14 commit 2447b74Copy full SHA for 2447b74
CHANGELOG.md
@@ -18,6 +18,7 @@ based on http://keepachangelog.com/en/1.0.0/
18
19
### Changed
20
- Set 'softWrap' to be true by default in LaTeX files.
21
+- Changed inline math snippet from `$...$` to `\(...\)`.
22
23
## [1.1.1] - 2017-08-18
24
### Fixed
snippets/language-latex.cson
@@ -63,9 +63,9 @@
63
'body': '\\\\begin{tabular}{${1:column alignment}}\n\t$0\n\\\\end{tabular}'
64
65
# element
66
- 'inline math - $$':
+ 'inline math - \\(\\)':
67
'prefix': 'inline'
68
- 'body': '$$1$$0'
+ 'body': '\\\\($1\\\\)$0'
69
70
# math, taken from https://github.com/SublimeText/LaTeXTools/blob/master/LaTeX%20math.sublime-completions
71
'.text.tex.latex .string.other.math':
0 commit comments