Skip to content

Latest commit

 

History

History
116 lines (79 loc) · 1.53 KB

README.md

File metadata and controls

116 lines (79 loc) · 1.53 KB

LaTeX Snippets for Sublime

More Information

Please find this readme and contact details at tobiasknuth.de

About the Package

Feel free to add your own snippets and send a pull request.

As LaTeX is, in Sublime's interpretation, rather text than code, one has to trigger auto-completion manually when typing. Alternatively, change the auto-completion mode in order to make the menu show when typing.

Snippets

chapter

\chapter{$content}

commenttitle

Inserts a headline into the comments.

%%--------------------------------------------------------------------------
%% $title
%%--------------------------------------------------------------------------

emph

\emph{$content}

footnote

\footnote{$content}

fraction

\frac{$numerator}{$denominator}

label

\label{$name}

nthroot

\sqrt[$n]{$radicand}

paragraph

\paragraph{$content}

quotes

\glqq{}$content\grqq{}

section

\section{$content}

sqrt

\sqrt{$radicand}

ssection

\subsection{$content}

sssection

\subsubsection{$content}

sum

\sum_{$k=$1}^$n

titlepage

\begin{titlepage}
    \author{$author} 
    \title{$title} 
    \date{$date} 
    \maketitle
\end{titlepage}