Vim-tex: Difference between revisions
Jump to navigation
Jump to search
Line 17: | Line 17: | ||
<source lang=latex> |
<source lang=latex> |
||
% !TEX program = xelatex |
% !TEX program = xelatex |
||
</source> |
|||
or alternatively |
|||
<source lang=latex> |
|||
% !TEX TS-program = xelatex |
|||
</source> |
</source> |
||
Latest revision as of 09:16, 21 April 2023
We follow setup from Gilles Castel:
- Plugin VimTex.
- Plugin UltiSnips.
- Some extra mappings.
References
- Also on Hacker News.
- Can people actually keep up with note-taking in Mathematics lectures with LATEX
- YouTube -- Fast LaTeX editing with Vim and Ultisnips
...To be completed...
How-to
Compile with Xelatex
The simplest is to add the following lines at the beginning of the .tex file [1]:
% !TEX program = xelatex
or alternatively
% !TEX TS-program = xelatex
Another option is to change g:vimtex_compiler_latexmk
variable [2].