Initial commit

This commit is contained in:
Zelong Kuang
2025-11-16 15:47:31 +11:00
commit aa7fa9511c
173 changed files with 1715 additions and 0 deletions

1
snippets/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
*.el

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: get-buffer
# key: gb
# --
(get-buffer "${1:`(read-buffer "Buffer:")`}")$0

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: get-buffer-create
# key: gbc
# --
(get-buffer-create $0)

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: message
# key: msg
# --
(message ${1:(format "$2")})$0

View File

@@ -0,0 +1,5 @@
# key: mk
# name: paren-insert
# condition: 'auto
# --
($0)

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: point-max
# key: pM
# --
(point-max)

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: pp
# key: pp
# --
(pp $3 $1)$0

4
snippets/eshell-mode/for Normal file
View File

@@ -0,0 +1,4 @@
#name : Eshell for loop
#key : for
# --
for f in ${1:*} { ${2:echo} "$f"; $3} $0

View File

@@ -0,0 +1 @@
emacs-lisp-mode

View File

View File

@@ -0,0 +1 @@
text-mode

View File

@@ -0,0 +1,4 @@
# key: vec2
# name: 2-vector
# --
\\begin{bmatrix} ${1:x}_{${2:1}} \\\\ ${3:$1}_{${4:2}} \\end{bmatrix}

View File

@@ -0,0 +1,29 @@
# key: template
# name: Basic template
# group: skeleton
# --
\input{`my-preamble-file`}
% \usepackage{hyperref}
% \hypersetup{
% colorlinks,
% citecolor=cyan,
% filecolor=black,
% linkcolor=blue,
% urlcolor=black}
\author{`user-full-name`\vspace{-2ex}}
\title{\vspace{-3.0cm}${1:Title$(capitalize yas-text)}\vspace{-2ex}}
${2:\date{${3:\today}}}
\begin{document}
\begingroup
\let\center\flushleft
\let\endcenter\endflushleft
\maketitle
\endgroup
% \tableofcontents
$0
\end{document}

View File

@@ -0,0 +1,10 @@
# -*- mode: snippet -*-
# name: Diagonal bmatrix
# key: diag3
# group: math
# --
\\begin{bmatrix}
${1:\\ddots} & & \\\\
& ${2:\\ddots} & \\\\
& & ${3:\\ddots}
\\end{bmatrix}

View File

@@ -0,0 +1,6 @@
# key: dm
# name: Display Math
# condition: (and (not (texmathp)) (quote auto))
# group: math
# --
\[ `(save-excursion (previous-line)(make-string (current-indentation) ?\s))`$0 \]

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: Exists
# key: EE
# condition: (and (texmathp) 'auto)
# group: math
# --
\\exists

View File

@@ -0,0 +1,16 @@
# key: //
# name: Fraction auto
# type: command
# condition: (and (texmathp) (quote auto))
# group: math
# --
(let ((numerator t))
(condition-case nil
(save-excursion
(backward-sexp)
(kill-sexp)
(delete-char 1))
(error (setq numerator 'nil)))
(insert "\\frac{" (if numerator (current-kill 0) "")
"}{}")
(backward-char (if numerator 1 3)))

View File

@@ -0,0 +1,17 @@
# -*- mode: snippet -*-
# name: Fraction slash
# key: /
# type: command
# condition: (texmathp)
# group: math
# --
(let ((numerator t))
(condition-case nil
(save-excursion
(backward-sexp)
(kill-sexp)
(delete-char 1))
(error (setq numerator 'nil)))
(insert "\\frac{" (if numerator (current-kill 0) "")
"}{}")
(backward-char (if numerator 1 3)))

View File

@@ -0,0 +1,6 @@
# key: mk
# name: Inline Math
# condition: (and (not (texmathp)) (quote auto))
# group: math
# --
\\( $0 \\)

View File

@@ -0,0 +1,19 @@
# -*- mode: snippet -*-
# name: Tikz Plot
# key: tikzplot
# group: environments
# --
\begin{figure}[$1]
\centering
\begin{tikzpicture}
\begin{axis}[
xmin= ${2:-10}, xmax= ${3:10},
ymin= ${4:-10}, ymax = ${5:10},
axis lines = middle,
]
\addplot[domain=$2:$3, samples=${6:100}]{$7};
\end{axis}
\end{tikzpicture}
\caption{$8}
\label{${9:"waiting for reftex-label call..."$(unless yas/modified-p (reftex-label nil 'dont-insert))}}
\end{figure}

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: To the power
# key: pw
# condition: (and (texmathp) 'auto)
# group: math
# --
^{$0}

7
snippets/latex-mode/^2 Normal file
View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: ^2
# key: sr
# condition: (and (texmathp) 'auto)
# group: math
# --
^2$0

7
snippets/latex-mode/^3 Normal file
View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: ^3
# key: cb
# condition: (and (texmathp) 'auto)
# group: math
# --
^3$0

View File

@@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# contributor : Mads D. Kristensen <madsdk@gmail.com>
# key : abstract
# group: sections
# name : \abstract
# --
\begin{abstract}
$0
\end{abstract}

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: adjoint
# key: adj
# group: math
# condition: (and (texmathp) 'auto)
# --
`(delete-backward-char 1)`^{\\dagger}$0

View File

@@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# contributor : Rasmus Borgsmidt <rasmus@borgsmidt.dk>
# key : align
# group: environments
# name : \begin{align} ... \end{align}
# --
\begin{align}
$0
\end{align}

View File

@@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# contributor : Rasmus Borgsmidt <rasmus@borgsmidt.dk>
# key : align*
# group: environments
# name : \begin{align*} ... \end{align*}
# --
\begin{align*}
$0
\end{align*}

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: arccos
# key: arccos
# group: math
# condition: (and (texmathp) 'auto)
# --
\\arccos

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: arccot
# key: arccot
# group: math
# condition: (and (texmathp) 'auto)
# --
\\arccot

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: arccsc
# key: arccsc
# group: math
# condition: (and (texmathp) 'auto)
# --
\\arccsc

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: arcsec
# key: arcsec
# group: math
# condition: (and (texmathp) 'auto)
# --
\\arcsec

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: arcsin
# key: arcsin
# group: math
# condition: (and (texmathp) 'auto)
# --
\\arcsin

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: arctan
# key: arctan
# group: math
# condition: (and (texmathp) 'auto)
# --
\\arctan

View File

@@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# contributor : Peter Urbak <peter@dragonwasrobot.com>
# key : arr
# group: environments
# name : \begin{array} ... \end{array}
# --
\begin{array}{$1}
$0
\end{array}

View File

@@ -0,0 +1,28 @@
# -*- mode: snippet -*-
# contributor: Mads D. Kristensen <madsdk@gmail.com>
# contributor : Song Qiang <tsiangsung@gmail.com>
# key: article
# group: skeleton
# name: \documentclass{article} ...
# --
\documentclass[11pt]{article}
\usepackage{graphicx,amsmath,amssymb,subfigure,url,xspace}
\newcommand{\eg}{e.g.,\xspace}
\newcommand{\bigeg}{E.g.,\xspace}
\newcommand{\etal}{\textit{et~al.\xspace}}
\newcommand{\etc}{etc.\@\xspace}
\newcommand{\ie}{i.e.,\xspace}
\newcommand{\bigie}{I.e.,\xspace}
\title{${1:title}}
\author{${2:Author Name}}
\begin{document}
\maketitle
\bibliographystyle{${3:plain}}
\bibliography{${4:literature.bib}}
\end{document}

15
snippets/latex-mode/bar Normal file
View File

@@ -0,0 +1,15 @@
# -*- mode: snippet -*-
# name: bar
# key: bar
# type: command
# condition: (and (texmathp) 'auto)
# group: math
# --
(let ((argument t))
(condition-case nil
(progn
(backward-sexp)
(kill-sexp)
(delete-char 1))
(error (setq argument 'nil)))
(insert "\\bar{" (if argument (current-kill 0) "") "}"))

View File

@@ -0,0 +1,17 @@
# key: basict
# group: skeleton
# name: \documentclass{article} ...
# --
\documentclass[11pt]{article}
\usepackage{graphicx,amsmath,amssymb,subfigure,url,xspace}
\title{${1:title}}
\author{${2:Author Name}}
\begin{document}
\maketitle
$0
\end{document}

5
snippets/latex-mode/bbm1 Normal file
View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: bbm1
# key: 11
# --
\mathbbm{1}

View File

@@ -0,0 +1,37 @@
# -*- mode: snippet -*-
# contributor: Claudio Marforio <marforio@gmail.com>
# key: beamer
# group: skeleton
# name: \documentclass{beamer} ...
# --
\documentclass[xcolor=dvipsnames]{beamer}
\usepackage{graphicx,subfigure,url}
% example themes
\usetheme{Frankfurt}
\usecolortheme{seahorse}
\usecolortheme{rose}
% put page numbers
% \setbeamertemplate{footline}[frame number]{}
% remove navigation symbols
% \setbeamertemplate{navigation symbols}{}
\title{${1:Presentation Title}}
\author{${2:Author Name}}
\begin{document}
\frame[plain]{\titlepage}
\begin{frame}[plain]{Outline}
\tableofcontents
\end{frame}
\section{${3:Example Section}}
\begin{frame}{${4:Frame Title}}
\end{frame}
\end{document}

View File

@@ -0,0 +1,10 @@
# -*- mode: snippet -*-
# contributor: Mads D. Kristensen <madsdk@gmail.com>
# contributor : Bjorn Reese <breese@users.sourceforge.net>
# key: begin
# group: environments
# name: \begin{environment} ... \end{environment}
# --
\begin{${1:$$(yas/choose-value (mapcar 'car (LaTeX-environment-list)))}}
$0
\end{$1}

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# contributor: Mads D. Kristensen <madsdk@gmail.com>
# key: bib
# group: misc
# name: \bibliography
# --
\bibliographystyle{plain}
\bibliography{$1}$0

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# contributor: Song Qiang <tsiangsung@gmail.com>
# key: big
# group: math
# name: \bigl( ... \bigr)
# --
\\${1:$$(yas/choose-value '("big" "Big" "bigg" "Bigg"))}l( $0 \\$1r)

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# contributor: François Garillot <francois@garillot.net>
# key: bigop
# group: math
# name: \bigop_{n}^{}
# --
\\big${1:$$(yas/choose-value '("oplus" "otimes" "odot" "cup" "cap" "uplus" "sqcup" "vee" "wedge"))}_{$2}^{$3}$0

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# contributor: Song Qiang <tsiangsung@gmail.com>
# key: binom
# group: math
# name: \binom{n}{k}
# --
\binom{${1:n}}{${2:k}}

View File

@@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# contributor: Claudio Marforio <marforio@gmail.com>
# key: block
# group: environments
# name : \begin{*block} ... \end{*block}
# --
\begin{${1:$$(yas/choose-value '("block" "exampleblock" "alertblock"))}}{${2:Block Title}}
\end{$1}

View File

@@ -0,0 +1,8 @@
# key: mat2
# name: bmatrix (2 x 2)
# group: math
# --
\\begin{bmatrix}
${1:A} & ${2:$1} \\\\
${3:$1} & ${4:$1}
\\end{bmatrix}

View File

@@ -0,0 +1,8 @@
# key: mat3
# name: bmatrix (3 x 3)
# --
\\begin{bmatrix}
${1:A} & ${2:$1} & ${3:$1} \\\\
${4:$1} & ${5:$1} & ${6:$1} \\\\
${7:$1} & ${8:$1} & ${9:$1}
\\end{bmatrix}

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# contributor: Márcio M. Ribeiro <marcio.mr@gmail.com>
# key: bf
# group: font
# name: {\bf ... }
# --
{\bf $1}$0

View File

@@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# contributor: Mads D. Kristensen <madsdk@gmail.com>
# key: case
# group: math
# name: \begin{cases} ... \end{cases}
# --
\begin{cases}
$0 \\\\
\end{cases}

View File

@@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# name: cases
# key: case
# condition: (texmathp)
# group: math
# --
\\begin{cases}
$1
\\end{cases}$0

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: ceiling function
# key: ceil
# condition: (and (texmathp) 'auto)
# group: math
# --
\\left\\lceil $1 \\right\\rceil $0

View File

@@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# contributor : Mads D. Kristensen <madsdk@gmail.com>
# key : cha
# group: sections
# name : \chapter
# --
\chapter{${1:name}}
\label{${2:"waiting for reftex-label call..."$(unless yas/modified-p (reftex-label nil 'dont-insert))}}
$0

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# contributor : Mads D. Kristensen <madsdk@gmail.com>
# key : cha*
# group: sections
# name : \chapter*
# --
\chapter*{${1:name}}
$0

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# contributor : Marcio M. Ribeiro <marcio.mr@gmail.com>
# key: cite
# group: references
# name : \cite
# --
`(unless yas-modified-p (setq this-command 'citar-insert-citation) (call-interactively 'citar-insert-citation))`

7
snippets/latex-mode/code Normal file
View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: code
# key: code
# --
\begin{lstlisting}${1:[language=${2:Matlab}]}
$0
\end{lstlisting}

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: column vector
# key: cvec
# condition: 'auto
# group: math
# --
\\begin{pmatrix} ${1:x}_{${2:1}}\\\\ ${3:\\vdots}\\\\ $1_{${4:n}} \\end{pmatrix}

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: column-separator
# key: ,,
# condition: (and (texmathp) 'auto)
# group: math
# --
& $0

View File

@@ -0,0 +1,13 @@
# -*- mode: snippet -*-
# name: columns
# key: cols
# --
\begin{columns}
\begin{column}{.${1:5}\textwidth}
$0
\end{column}
\begin{column}{.${2:5}\textwidth}
\end{column}
\end{columns}

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: complex conjugate
# key: cj
# condition: (and (texmathp) 'auto)
# group: math
# --
^{\\star}$0

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# contributor: François Garillot <francois@garillot.net>
# key: coprod
# group: math
# name: \coprod_{n}^{}
# --
\coprod_{$1}^{$2}$0

7
snippets/latex-mode/cos Normal file
View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: cos
# key: cos
# group: math
# condition: (and (texmathp) 'auto)
# --
\\cos

7
snippets/latex-mode/cot Normal file
View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: cot
# key: cot
# group: math
# condition: (and (texmathp) 'auto)
# --
\\cot

7
snippets/latex-mode/csc Normal file
View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: csc
# key: csc
# group: math
# condition: (and (texmathp) 'auto)
# --
\\csc

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: d-by-dt
# key: ddt
# condition: (and (texmathp) 'auto)
# group: math
# --
\\frac{\\mathrm{d} $1}{\\mathrm{d} ${2:t}}$0

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: ddots
# key: /,
# group: math
# condition: (and (texmathp) 'auto)
# --
\\ddots

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: definite integral
# key: dint
# condition: (and (texmathp) 'auto)
# group: math
# --
\\int_{${1:-\\infty}}^{${2:\\infty}}$0

View File

@@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# contributor : Mads D. Kristensen <madsdk@gmail.com>
# key : desc
# group: environments
# name : \begin{description} ... \end{description}
# --
\begin{description}
\item[${1:label}] $0
\end{description}

View File

@@ -0,0 +1,10 @@
# -*- mode: snippet -*-
# contributor: Mads D. Kristensen <madsdk@gmail.com>
# key: doc
# name: \documentclass
# --
\documentclass[$2]{${1:$$(yas/choose-value '("article" "report" "book" "letter"))}}
\begin{document}
$0
\end{document}

7
snippets/latex-mode/dots Normal file
View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: dots
# key: ...
# condition: (and (texmathp) 'auto)
# group: math
# --
\\dots$0

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# contributor: Márcio M. Ribeiro <marcio.mr@gmail.com>
# key: em
# group: font
# name: {\em ...}
# --
{\em $1}$0

View File

@@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# contributor : Mads D. Kristensen <madsdk@gmail.com>
# key: enum
# group: environments
# name : \begin{enumerate} ... \end{enumerate}
# --
\begin{enumerate}
\item $0
\end{enumerate}

View File

@@ -0,0 +1,10 @@
# -*- mode: snippet -*-
# contributor: Mads D. Kristensen <madsdk@gmail.com>
# key: eq
# group: math
# name: \begin{equation} ... \end{equation}
# --
\begin{equation}
\label{${1:"waiting for reftex-label call..."$(unless yas/modified-p (reftex-label nil 'dont-insert))}}
$0
\end{equation}

View File

@@ -0,0 +1,10 @@
# -*- mode: snippet -*-
# contributor: Mads D. Kristensen <madsdk@gmail.com>
# key: eqs
# group: math
# name: \begin{align} ... \end{align}
# --
\begin{${1:$$(yas/choose-value '("align" "align*" "multline" "gather" "subequations"))}}
\label{${2:"waiting for reftex-label call..."$(unless yas/modified-p (reftex-label nil 'dont-insert))}}
$0
\end{$1}

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: equiv
# key: eqv
# condition: (and (texmathp) 'auto)
# --
\\equiv$0

7
snippets/latex-mode/exp Normal file
View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: exp
# key: exp
# group: math
# condition: (and (texmathp) 'auto)
# --
\\exp

View File

@@ -0,0 +1,12 @@
# -*- mode: snippet -*-
# contributor : Mads D. Kristensen <madsdk@gmail.com>
# key : fig
# group: environments
# name : \begin{figure} ... \end{figure}
# --
\begin{figure}[htbp]
\centering
$0
\caption{${1:caption}}
\label{${2:"waiting for reftex-label call..."$(unless yas/modified-p (reftex-label nil 'dont-insert))}}
\end{figure}

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: floor function
# key: floor
# condition: (and (texmathp) 'auto)
# group: math
# --
\\left\\lfloor $1 \\right\\rfloor $0

View File

@@ -0,0 +1,6 @@
# key: VV
# name: forall
# condition: (and (texmathp) (quote auto))
# group: math
# --
\\forall$0

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# contributor: Song Qiang <tsiangsung@gmail.com>
# key: frac
# group: math
# name: \frac{numerator}{denominator}
# --
\frac{${1:numerator}}{${2:denominator}}$0

View File

@@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# contributor: Claudio Marforio <marforio@gmail.com>
# key: frame
# group: environments
# name : \begin{frame} ... \end{frame}
# --
\begin{frame}{${1:Frame Title$(capitalize yas-text)}}
$0
\end{frame}

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# contributor : Peter Urbak <peter@dragonwasrobot.com>
# key : newgls
# group: misc
# name : \newglossaryentry{...}{...}
# --
\newglossaryentry{$1}{name={$1},
description={$2.}}

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# contributor : Mads D. Kristensen <madsdk@gmail.com>
# key : graphics
# name : \includegraphics
# --
\includegraphics[width=${1:\linewidth}]{${2:file}}

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: greater greater
# key: >>
# condition: (and (texmathp) 'auto)
# group: math
# --
\\gg

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: greater or equal
# key: geq
# condition: (and (texmathp) 'auto)
# group: math
# --
\\ge

15
snippets/latex-mode/hat Normal file
View File

@@ -0,0 +1,15 @@
# -*- mode: snippet -*-
# name: hat
# key: hat
# type: command
# condition: (and (texmathp) 'auto)
# group: math
# --
(let ((argument t))
(condition-case nil
(progn
(backward-sexp)
(kill-sexp)
(delete-char 1))
(error (setq argument 'nil)))
(insert "\\hat{" (if argument (current-kill 0) "") "}"))

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: href
# group: environments
# name: \href{url}{text}
# --
\href{${1:url}}{${2:text}}$0

View File

@@ -0,0 +1,6 @@
# key: iff
# name: if and only if
# condition: (and (texmathp) (quote auto))
# group: math
# --
\iff

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: implied by
# key: <=
# condition: (and (texmathp) 'auto)
# group: math
# --
\\impliedby $0

View File

@@ -0,0 +1,6 @@
# key: =>
# name: implies
# condition: (and (texmathp) (quote auto))
# group: math
# --
\implies$0

7
snippets/latex-mode/in Normal file
View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: in
# key: inn
# condition: (and (texmathp) 'auto)
# group: math
# --
\\in

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: includegraphics
# key: ig
# --
\includegraphics${1:[$2]}{$0}

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: infimum
# key: inf
# condition: (and (texmathp) 'auto)
# group: math
# --
\\inf_{$1 \\in $2} $0

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# contributor: Song Qiang <tsiangsung@gmail.com>
# key: integ
# group: math
# condition: (and (texmathp) 'auto)
# name: Indefinite integral (all)
# --
\\${1:$$(yas/choose-value '("int" "oint" "iint" "iiint" "iiiint" "idotsint"))}$0

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: inverse
# key: inv
# condition: (and (texmathp) 'auto)
# group: math
# --
^{\text{-}1}

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# contributor: Mads D. Kristensen <madsdk@gmail.com>
# key: it
# group: environments
# name: \item
# --
\item $0

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# contributor: Rasmus Borgsmidt <rasmus@borgsmidt.dk>
# key: itd
# group: environments
# name: \item[] (description)
# --
\item[${1:label}] $0

View File

@@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# contributor : Mads D. Kristensen <madsdk@gmail.com>
# key : item
# group: environments
# name : \begin{itemize} ... \end{itemize}
# --
\begin{itemize}
\item $0
\end{itemize}

View File

@@ -0,0 +1,7 @@
-*- mode: snippet -*-
# contributor : Márcio M. Ribeiro <marcio.mr@gmail.com>
# key: lab
# group: references
# name : \label
# --
\label{${1:label$(unless yas/modified-p (reftex-label nil 'dont-insert))}}$0

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: leftrightarrow
# key: <->
# condition: (and (texmathp) 'auto)
# group: math
# --
\\leftrightarrow

Some files were not shown because too many files have changed in this diff Show More