All Projects → gillescastel → Latex Snippets

gillescastel / Latex Snippets

Licence: mit
Vim + LaTeX snippets setup

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Latex Snippets

Latex.js
JavaScript LaTeX to HTML5 translator
Stars: ✭ 374 (-12.62%)
Mutual labels:  latex
Knitr Examples
A collection of knitr examples
Stars: ✭ 389 (-9.11%)
Mutual labels:  latex
Franklin.jl
(yet another) static site generator. Simple, customisable, fast, maths with KaTeX, code evaluation, optional pre-rendering, in Julia.
Stars: ✭ 413 (-3.5%)
Mutual labels:  latex
Betterbib
Update BibTeX files with info from online resources.
Stars: ✭ 380 (-11.21%)
Mutual labels:  latex
Mark Mind
MarkMind — a mind map and outliner editor for Windows, Mac, Linux, andriod and ios ,it support markdown in node.
Stars: ✭ 385 (-10.05%)
Mutual labels:  latex
Crowbook
Converts books written in Markdown to HTML, LaTeX/PDF and EPUB
Stars: ✭ 399 (-6.78%)
Mutual labels:  latex
Letter Boilerplate
Finest letter typesetting from the command line
Stars: ✭ 374 (-12.62%)
Mutual labels:  latex
Pytablewriter
pytablewriter is a Python library to write a table in various formats: CSV / Elasticsearch / HTML / JavaScript / JSON / LaTeX / LDJSON / LTSV / Markdown / MediaWiki / NumPy / Excel / Pandas / Python / reStructuredText / SQLite / TOML / TSV.
Stars: ✭ 422 (-1.4%)
Mutual labels:  latex
Flexiblerichtextview
A view showing LaTeX, images, codes... You can customize tags as you want
Stars: ✭ 389 (-9.11%)
Mutual labels:  latex
Twentysecondscurriculumvitae Latex
Write Beautiful Curriculum Vitae in LaTex, that ensures twenty seconds reading.
Stars: ✭ 409 (-4.44%)
Mutual labels:  latex
Latex Online
Online latex compiler. You give it a link, it gives you PDF
Stars: ✭ 381 (-10.98%)
Mutual labels:  latex
Latex Action
GitHub Action to compile LaTeX documents
Stars: ✭ 386 (-9.81%)
Mutual labels:  latex
Texlab
An implementation of the Language Server Protocol for LaTeX
Stars: ✭ 402 (-6.07%)
Mutual labels:  latex
Marktext
📝A simple and elegant markdown editor, available for Linux, macOS and Windows.
Stars: ✭ 22,894 (+5249.07%)
Mutual labels:  latex
Latexindent.pl
Perl script to add indentation (leading horizontal space) to LaTeX files. It can modify line breaks before, during and after code blocks; it can perform text wrapping and paragraph line break removal. It can also perform string-based and regex-based substitutions/replacements. The script is customisable through its YAML interface.
Stars: ✭ 415 (-3.04%)
Mutual labels:  latex
Limecv
A LaTeX CV Document Class
Stars: ✭ 376 (-12.15%)
Mutual labels:  latex
Multimarkdown 6
Lightweight markup processor to produce HTML, LaTeX, and more.
Stars: ✭ 394 (-7.94%)
Mutual labels:  latex
Ucas course 2019
中国科学院大学2019-2020课程(秋季,春季,夏季)
Stars: ✭ 426 (-0.47%)
Mutual labels:  latex
Latex Templates
A collection of LaTeX templates used for research, courses, and miscellanea.
Stars: ✭ 418 (-2.34%)
Mutual labels:  latex
Fiduswriter
Fidus Writer is an online collaborative editor for academics.
Stars: ✭ 405 (-5.37%)
Mutual labels:  latex

Vim + LaTeX snippets setup

How I'm able to take notes in mathematics lectures using LaTeX and Vim

Vim configuration

Copy tex.snippets to ~/.vim/UltiSnips/ and assuming you're using Vim Plug, add the following to your .vimrc:

Plug 'sirver/ultisnips'
    let g:UltiSnipsExpandTrigger = '<tab>'
    let g:UltiSnipsJumpForwardTrigger = '<tab>'
    let g:UltiSnipsJumpBackwardTrigger = '<s-tab>'

Plug 'lervag/vimtex'
    let g:tex_flavor='latex'
    let g:vimtex_view_method='zathura'
    let g:vimtex_quickfix_mode=0

Plug 'KeitaNakamura/tex-conceal.vim'
    set conceallevel=1
    let g:tex_conceal='abdmg'
    hi Conceal ctermbg=none

setlocal spell
set spelllang=en_us
inoremap <C-l> <c-g>u<Esc>[s1z=`]a<c-g>u

For the colorscheme, install pywal, add the following to your .vimrc

Plug 'dylanaraps/wal'
colorscheme wal
set background=dark

Finally, execute wal --theme base16-nord.

Something not working as expected? Feel free to open an issue!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].