1
0
mirror of https://github.com/gryf/.vim.git synced 2025-12-17 19:40:29 +01:00
Files
.vim/UltiSnips/tex.snippets

30 lines
591 B
Plaintext

snippet li "Item in itemize list"
\item ${VISUAL}$0
endsnippet
snippet lst "Code Listing for listings package" !b
\begin{lstlisting}
${VISUAL}$0
\end{lstlisting}
endsnippet
snippet hrefoot "Make hyper ref with footnote"
\href{$2}{${VISUAL}${1:name}}\footnote{\url{${2:url}}}.$0
endsnippet
snippet href "Make hyperlink"
\href{$2}{${VISUAL}${1:name}}.$0
endsnippet
snippet subsec "Subsection" !b
\subsection{${VISUAL}${1:name}}$0
endsnippet
snippet sss "Sub subsection" !b
\subsubsection{${VISUAL}${1:name}}$0
endsnippet
snippet tt "Make text monospaced"
\texttt{${VISUAL}}$0
endsnippet