Skip to content

tecosaur/LaTeX-auto-activating-snippets

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LaTeX Auto Activating Snippets

A chunky set of LaTeX snippets for the auto-activating-snippets engine.

Sample Configuration

(use-package laas
  :hook (LaTeX-mode . laas-mode)
  :config ; do whatever here
  (aas-set-snippets 'laas-mode
                    ;; set condition!
                    :cond #'texmathp ; expand only while in math
                    "supp" "\\supp"
                    "On" "O(n)"
                    "O1" "O(1)"
                    "Olog" "O(\\log n)"
                    "Olon" "O(n \\log n)"
                    ;; bind to functions!
                    "Sum" (lambda () (interactive)
                            (yas-expand-snippet "\\sum_{$1}^{$2} $0"))
                    "Span" (lambda () (interactive)
                             (yas-expand-snippet "\\Span($1)$0"))
                    ;; add accent snippets
                    :cond #'laas-object-on-left-condition
                    "qq" (lambda () (interactive) (laas-wrap-previous-object "sqrt"))))

Credits

cdlatex and this very nice blog post.

Snippets

Note: The rendering on GitHub is a little wonkey. It should be understandable enough, but in any case you can also view this file from emacs:

(browse-url-emacs "https://raw.githubusercontent.com/tecosaur/LaTeX-auto-activating-snippets/master/README.org")

Basic set

Basic snippets. Expand only inside maths.
!=
!>\mapsto
**
+-±
-+\mp
->
...
<<\ll
<=\leq
<>\diamond
=<\impliedby
==&=
=>\implies
>=\geq
>>\gg
AA
EE
cb^3
iff\iff
inn
notin¬\in
sr^2
xx×
❘->\mapsto
❘=\models
❘❘\mid
∽=
∽∽
arccosarccos
arccot\arccot
arccot\arccot
arccsc\arccsc
arcsec\arcsec
arcsinarcsin
arctanarctan
coscos
cotcot
csccsc
expexp
lnln
loglog
perp
sinsin
star*
gcdgcd
minmin
maxmax
eqv
CC\CC
FF\FF
HH\HH
NN\NN
PP\PP
QQ\QQ
RR\RR
ZZ\ZZ
;aα
;A
;;A\aleph
;bβ
;;;ccos
;;;Carccos
;dδ
;;d
;DΔ
;;D
;eε
;;eε
;;;eexp
;E
;;;Eln
;fφ
;;f\varphi
;FΦ
;gγ
;;;glg
;GΓ
;;;G10?
;hη
;;h\hbar
;i
;;i\imath
;Iι
;;I\Im
;;j\jmath
;kκ
;lλ
;;l\ell
;;;llog
;LΛ
;mμ
;nν
;;;nln
;N
;;;Nexp
;oω
;OΩ
;;O\mho
;pπ
;;p\varpi
;PΠ
;qθ
;;qϑ
;QΘ
;rρ
;;r\varrho
;;R\Re
;sσ
;;sς
;;;ssin
;SΣ
;;;Sarcsin
;tτ
;;;ttan
;;;Tarctan
;uυ
;UΥ
;v
;VΦ
;wξ
;WΞ
;xχ
;yψ
;YΨ
;zζ
;0
;8
;!¬
;^
;&
;∽
;;∽
;_
;+
;-
;;+
;;-\longleftrightarrow
;*×
;/¬
;❘\mapsto
;;❘\longmapsto
;\\setminus
;=
;;=\Longleftrightarrow
;(\langle
;)\rangle
;[
;;[\Longleftarrow
;]
;;]\Longrightarrow
;{
;}
;<
;;<\longleftarrow
;;;<min
;>
;;>\longrightarrow
;;;>max
~;’~
;.

Annoying Subscripts

Automatic subscripts! Expand In math and after a single letter.
iiX_i, or XYi if a subscript was typed already
ip1i+1
jjX_j, or XYj if a subscript was typed already
jp1j+1
nnX_n, or XYn if a subscript was typed already
np1n+1
kkX_k, or XYk if a subscript was typed already
kp1k+1
0X_0, or XY0 if a subscript was typed already
1X_1, or XY1 if a subscript was typed already
2X_2, or XY2 if a subscript was typed already
3X_3, or XY3 if a subscript was typed already
4X_4, or XY4 if a subscript was typed already
5X_5, or XY5 if a subscript was typed already
6X_6, or XY6 if a subscript was typed already
7X_7, or XY7 if a subscript was typed already
8X_8, or XY8 if a subscript was typed already
9X_9, or XY9 if a subscript was typed already

The infamous fraction

Frac snippet.
Expand to a template frac after //, or wrap the object before point if it isn~t /.

:

ab/ => \frac{ab}{}
// => \frac{}{}
/See the docs of `laas-frac-snippet’

Simpler Accents

A simpler way to apply accents. Expand If LaTeX symbol immidiately before point.
~’r~Wrap in \mathrm{} or \textrm{}
~’i~Wrap in \mathit{} or \textit{}
~’b~Wrap in \mathbf{} or \textbf{}
~’e~Wrap in \mathemph{} or \textemph{}
~’y~Wrap in \mathtt{} or \texttt{}
~’f~Wrap in \mathsf{} or \textsf{}
~’l~Wrap in \textsl
~’.~Wrap in \dot{}
~’:~Wrap in \ddot{}
~’∽~Wrap in ˜
~’N~Wrap in \widetilde{}
~’^~Wrap in \hat{}
~’H~Wrap in \widehat{}
~’-~Wrap in \bar{}
~’T~Wrap in \overline{}
~’_~Wrap in \underline{}
~’{~Wrap in \overbrace{}
~’}~Wrap in \underbrace{}
~’>~Wrap in \vec{}
~’/~Wrap in \grave{}
~’”~Wrap in ´
~’v~Wrap in \check{}
~’u~Wrap in \breve{}
~’m~Wrap in \mbox{}
~’c~Wrap in \mathcal{}
~’0~Wrap in {\textstyle }
~’1~Wrap in {\displaystyle }
~’2~Wrap in {\scriptstyle }
~’3~Wrap in {\scriptscriptstyle }
~’q~Wrap in \sqrt{}
..␣Wrap in \dot{}
~,.~Wrap in \vec{}
~.,~Wrap in \vec{}
∽␣Wrap in ˜
hatWrap in \hat{}
barWrap in \overline{}