All snippets are placed in snippets.cson
, you can find it from Atom
> Open Your Snippets
.
'.text.tex.latex':
'bold text':
'prefix': 'b'
'body': '\\\\textbf{$1}'
'italic text':
'prefix': 'i'
'body': '\\\\textit{$1}'
'underline text':
'prefix': 'u'
'body': '\\\\underline{$1}'
'emphasize text':
'prefix': 'em'
'body': '\\\\emph{$1}'
'long emphasize text':
'prefix': 'lem'
'body': '{\\\\em $1}'
'small caps text':
'prefix': 'sc'
'body': '\\\\textsc{$1}'
'new paragraph':
'prefix': 'pa'
'body': '\\\\par $1'
'itemize':
'prefix': 'itemi'
'body': """
\\\\begin{itemize}
\\\\item $1
\\\\end{itemize}
"""
'item':
'prefix': 'item'
'body': '\\\\item $1'
'use package':
'prefix': 'usep'
'body': '\\\\usepackage{$1}'
'use image package':
'prefix': 'usegrap'
'body': '\\\\usepackage{graphicx}'
'add image columnwidth':
'prefix': 'imgc'
'body': '\\\\includegraphics[width=$1\\\\columnwidth]{$2}'
'add image textwidth':
'prefix': 'imgt'
'body': '\\\\includegraphics[width=$1\\\\textwidth]{$2}'